Changeset 8858 for code/trunk/src/libraries/util/ExprParser.h
- Timestamp:
- Aug 23, 2011, 12:45:53 AM (14 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:ignore
-
old new 1 1 build 2 2 codeblocks 3 vs 3 4 dependencies
-
- Property svn:mergeinfo changed
/code/branches/output (added) merged: 8739-8740,8765,8771-8772,8774-8780,8787-8789,8794-8799,8801,8803-8812,8814,8816-8817,8820,8822,8825-8837,8840,8844,8846,8848-8850,8853-8854
- Property svn:ignore
-
code/trunk/src/libraries/util/ExprParser.h
r8351 r8858 55 55 if (!expr.getRemains().empty()) 56 56 { 57 COUT(2) << "Warning: Expression could not be parsed to the end! Remains: '" << expr.getRemains() << '\'' << std::endl;57 orxout(user_warning) << "Expression could not be parsed to the end! Remains: '" << expr.getRemains() << '\'' << endl; 58 58 } 59 59 float result = expr.getResult(); 60 60 } 61 61 else 62 COUT(1) << "Error: Cannot calculate expression: Parse error." << std::endl;62 orxout(user_error) << "Cannot calculate expression: Parse error." << endl; 63 63 @endcode 64 64 getRemains() returns the expression after what could be parsed. For instance
Note: See TracChangeset
for help on using the changeset viewer.