Changeset 768 in dev for trunk/ab5.0/abdev/compiler_x64/Compile_Statement.cpp
- Timestamp:
- Dec 30, 2008, 1:56:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/compiler_x64/Compile_Statement.cpp
r720 r768 248 248 int GetLabelAddress(char *LabelName,int LineNum){ 249 249 if(LabelName){ 250 BOOST_FOREACH( const GotoLabel &label, compiler.codeGenerator.gotoLabels )250 foreach( const GotoLabel &label, compiler.codeGenerator.gotoLabels ) 251 251 { 252 252 if( label.name.size() > 0 ) … … 260 260 } 261 261 else{ 262 BOOST_FOREACH( const GotoLabel &label, compiler.codeGenerator.gotoLabels )262 foreach( const GotoLabel &label, compiler.codeGenerator.gotoLabels ) 263 263 { 264 264 if( label.name.size() == 0 )
Note:
See TracChangeset
for help on using the changeset viewer.