Changeset 392 in dev for trunk/abdev/BasicCompiler64


Ignore:
Timestamp:
Feb 20, 2008, 7:44:27 PM (16 years ago)
Author:
dai_9181
Message:

BOOL bLiving → bool isLiving

Location:
trunk/abdev/BasicCompiler64
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler64/Compile_ProcOp.cpp

    r370 r392  
    344344        pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() );
    345345        pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() );
    346         pVar->bLiving=TRUE;
     346        pVar->isLiving = true;
    347347
    348348        pUserProc->GetLocalVars().push_back( pVar );
  • trunk/abdev/BasicCompiler64/Compile_Var.cpp

    r370 r392  
    11401140        pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() );
    11411141        pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() );
    1142         pVar->bLiving=TRUE;
     1142        pVar->isLiving = true;
    11431143
    11441144        //エラー用
     
    11751175        pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() );
    11761176        pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() );
    1177         pVar->bLiving=TRUE;
     1177        pVar->isLiving = true;
    11781178
    11791179        if(InitBuf[0]){
Note: See TracChangeset for help on using the changeset viewer.