Changeset 261 in dev for trunk/abdev/BasicCompiler32/Compile_Statement.cpp
- Timestamp:
- Aug 3, 2007, 11:53:50 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_Statement.cpp
r260 r261 279 279 280 280 int GetLabelAddress(char *LabelName,int LineNum){ 281 extern Labels labels;282 283 281 if(LabelName){ 284 BOOST_FOREACH( const Label &label, labels )282 BOOST_FOREACH( const GotoLabel &label, compiler.codeGenerator.gotoLabels ) 285 283 { 286 284 if( label.name.size() > 0 ) … … 294 292 } 295 293 else{ 296 BOOST_FOREACH( const Label &label, labels )294 BOOST_FOREACH( const GotoLabel &label, compiler.codeGenerator.gotoLabels ) 297 295 { 298 296 if( label.name.size() == 0 )
Note:
See TracChangeset
for help on using the changeset viewer.