Changeset 275 in dev for trunk/abdev/BasicCompiler_Common/VariableOpe.cpp
- Timestamp:
- Aug 11, 2007, 4:23:18 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/VariableOpe.cpp
r273 r275 979 979 bool isConst = ( dwFlag & DIMFLAG_CONST ) ? true:false; 980 980 981 Variable *pVar = new Variable( compiler.GetNamespaceSupporter().GetLivingNamespaceScopes(), name, type, isConst, false, ConstractParameter ); 981 Variable *pVar = new Variable( 982 compiler.GetNamespaceSupporter().GetLivingNamespaceScopes(), 983 name, 984 type, 985 isConst, 986 false, 987 ConstractParameter, 988 ( InitBuf[0] != 0 || dwFlag == DIMFLAG_INITDEBUGVAR ) 989 ); 982 990 983 991 if( subscripts.size() > 0 ){ … … 995 1003 996 1004 // 変数を追加 997 compiler.GetObjectModule().meta.GetGlobalVars().Add( 998 pVar, 999 ( InitBuf[0] != 0 || dwFlag == DIMFLAG_INITDEBUGVAR ) 1000 ); 1005 compiler.GetObjectModule().meta.GetGlobalVars().Add( pVar ); 1001 1006 1002 1007 if(InitBuf[0]){
Note:
See TracChangeset
for help on using the changeset viewer.