Changeset 8fa77eb
- Timestamp:
- Feb 5, 2023, 12:05:01 PM (22 months ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- 747a7c1
- Parents:
- 6d2af204
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ExpressionNode.cc
r6d2af204 r8fa77eb 10 10 // Created On : Sat May 16 13:17:07 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Aug 7 09:18:56 202113 // Update Count : 107 712 // Last Modified On : Mon Jan 16 15:52:05 2023 13 // Update Count : 1078 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" ); // char175 posn = str.rfind( "hh" ); // signed char 176 176 if ( posn != string::npos ) { type = 1; str.erase( posn, 2 ); goto FINI; } 177 177 178 posn = str.rfind( "HH" ); // char178 posn = str.rfind( "HH" ); // signed 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.