Changes in src/Parser/ExpressionNode.cc [8fa77eb:e874605]
- File:
-
- 1 edited
-
src/Parser/ExpressionNode.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ExpressionNode.cc
r8fa77eb re874605 10 10 // Created On : Sat May 16 13:17:07 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Jan 16 15:52:05 202313 // Update Count : 107 812 // Last Modified On : Sat Aug 7 09:18:56 2021 13 // Update Count : 1077 14 14 // 15 15 … … 173 173 if ( posn != string::npos ) { Unsigned = true; type = 2; ltype = 4; str.erase( posn, 1 ); goto FINI; } 174 174 175 posn = str.rfind( "hh" ); // signedchar175 posn = str.rfind( "hh" ); // char 176 176 if ( posn != string::npos ) { type = 1; str.erase( posn, 2 ); goto FINI; } 177 177 178 posn = str.rfind( "HH" ); // signedchar178 posn = str.rfind( "HH" ); // char 179 179 if ( posn != string::npos ) { type = 1; str.erase( posn, 2 ); goto FINI; } 180 180
Note:
See TracChangeset
for help on using the changeset viewer.