Changeset 256 in dev for trunk/abdev/BasicCompiler_Common/src/Const.cpp
- Timestamp:
- Aug 1, 2007, 11:19:01 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/Const.cpp
r254 r256 28 28 29 29 //重複チェック 30 if( compiler. GetMeta().GetGlobalConstMacros().IsExist( name )31 || compiler. GetMeta().GetGlobalConsts().IsExist( name ) )30 if( compiler.objectModule.meta.GetGlobalConstMacros().IsExist( name ) 31 || compiler.objectModule.meta.GetGlobalConsts().IsExist( name ) ) 32 32 { 33 33 SetError(15,name,cp); … … 38 38 //定数マクロ 39 39 40 compiler. GetMeta().GetGlobalConstMacros().Add( namespaceScopes, name, buffer + i );40 compiler.objectModule.meta.GetGlobalConstMacros().Add( namespaceScopes, name, buffer + i ); 41 41 } 42 42 else{ … … 44 44 char *expression = buffer + i + 1; 45 45 46 compiler. GetMeta().GetGlobalConsts().Add( namespaceScopes, name, expression );46 compiler.objectModule.meta.GetGlobalConsts().Add( namespaceScopes, name, expression ); 47 47 } 48 48 }
Note:
See TracChangeset
for help on using the changeset viewer.