Changeset 750 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/LexicalScope.cpp
- Timestamp:
- Sep 24, 2008, 2:02:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/LexicalScope.cpp
r677 r750 23 23 } 24 24 void LexicalScope::RunScheduleOfBreak(){ 25 BOOST_FOREACH( const PertialSchedule *pBreakPertialSchedule, breakPertialSchedules )25 foreach( const PertialSchedule *pBreakPertialSchedule, breakPertialSchedules ) 26 26 { 27 27 compiler.codeGenerator.opfix_JmpPertialSchedule( pBreakPertialSchedule ); … … 76 76 77 77 //使用済みローカル変数の生存チェックを外す 78 BOOST_FOREACH( Variable *pVar, (*pVars) )78 foreach( Variable *pVar, (*pVars) ) 79 79 { 80 80 if( pVar->isLiving && pVar->GetScopeLevel() == level )
Note:
See TracChangeset
for help on using the changeset viewer.