Ignore:
Timestamp:
Aug 11, 2007, 4:23:18 PM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/VariableOpe.cpp

    r273 r275  
    979979    bool isConst = ( dwFlag & DIMFLAG_CONST ) ? true:false;
    980980
    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    );
    982990
    983991    if( subscripts.size() > 0 ){
     
    9951003
    9961004    // 変数を追加
    997     compiler.GetObjectModule().meta.GetGlobalVars().Add(
    998         pVar,
    999         ( InitBuf[0] != 0 || dwFlag == DIMFLAG_INITDEBUGVAR )
    1000     );
     1005    compiler.GetObjectModule().meta.GetGlobalVars().Add( pVar );
    10011006
    10021007    if(InitBuf[0]){
Note: See TracChangeset for help on using the changeset viewer.