Changeset 998
- Timestamp:
- 07/11/20 13:47:06 (4 years ago)
- Location:
- cpp/frams/param
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/param/multiparamload.cpp
r973 r998 93 93 { 94 94 SString buf; 95 if (status == OnError) return status;95 if (status == OnError) return getStatusClearError(); 96 96 int unexpected_line = 0; 97 97 while (!finished()) … … 202 202 } 203 203 } 204 return status;204 return getStatusClearError(); 205 205 } 206 206 -
cpp/frams/param/multiparamload.h
r737 r998 90 90 /** same value as 'go()' */ 91 91 int getStatus() { return status; } 92 int getStatusClearError() { int s = status; if (status & OnError) status &= ~ OnError; return s; } 92 93 int finished() { return (status == Finished); } 93 94
Note: See TracChangeset
for help on using the changeset viewer.