Changeset 750 in dev for trunk/ab5.0/abdev/compiler_x86/Compile_Statement.cpp
- Timestamp:
- Sep 24, 2008, 2:02:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/compiler_x86/Compile_Statement.cpp
r720 r750 289 289 int GetLabelAddress(char *LabelName,int LineNum){ 290 290 if(LabelName){ 291 BOOST_FOREACH( const GotoLabel &label, compiler.codeGenerator.gotoLabels )291 foreach( const GotoLabel &label, compiler.codeGenerator.gotoLabels ) 292 292 { 293 293 if( label.name.size() > 0 ) … … 301 301 } 302 302 else{ 303 BOOST_FOREACH( const GotoLabel &label, compiler.codeGenerator.gotoLabels )303 foreach( const GotoLabel &label, compiler.codeGenerator.gotoLabels ) 304 304 { 305 305 if( label.name.size() == 0 )
Note:
See TracChangeset
for help on using the changeset viewer.