Changeset 637 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/LexicalAnalyzer_Const.cpp
- Timestamp:
- Jun 11, 2008, 10:10:26 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/LexicalAnalyzer_Const.cpp
r600 r637 74 74 75 75 //定数を追加 76 consts.Add( namespaceScopes, temporary, NextValue);76 consts.Add( Symbol( namespaceScopes, temporary ), NextValue); 77 77 } 78 78 } … … 178 178 if( StaticCalculation(false, expression, 0, &i64data, resultType) ) 179 179 { 180 consts.Add( namespaceScopes, name, i64data, resultType );180 consts.Add( Symbol( namespaceScopes, name ), i64data, resultType ); 181 181 } 182 182 } … … 185 185 // 定数マクロ 186 186 const char *params = temporary + i2; 187 if( !constMacros.Add( namespaceScopes, name, params ) )187 if( !constMacros.Add( Symbol( namespaceScopes, name ), params ) ) 188 188 { 189 189 compiler.errorMessenger.Output( 1, NULL, i );
Note:
See TracChangeset
for help on using the changeset viewer.