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

BOOL bLiving → bool isLiving

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/src/Variable.cpp

    r288 r392  
    3434    for( int i=(int)this->size()-1; i>=0 ; i-- ){
    3535        const Variable *pVar = (*this)[i];
    36         if( pVar->bLiving                                           //現在のスコープで有効なもの
     36        if( pVar->isLiving                                          //現在のスコープで有効なもの
    3737            && pVar->GetScopeLevel() == compiler.codeGenerator.lexicalScopes.GetNowLevel()  //現在のスコープと同一レベル
    3838            )
     
    5151    for( int i=(int)this->size()-1; i>=0 ; i-- ){
    5252        const Variable *pVar = (*this)[i];
    53         if( pVar->bLiving                                           //現在のスコープで有効なもの
     53        if( pVar->isLiving                                          //現在のスコープで有効なもの
    5454            && pVar->GetScopeLevel() <= compiler.codeGenerator.lexicalScopes.GetNowLevel()  //現在のスコープレベルを超さないもの(Returnによる解放処理中を考慮)
    5555            ){
Note: See TracChangeset for help on using the changeset viewer.