Ignore:
Timestamp:
Sep 24, 2008, 2:02:16 AM (16 years ago)
Author:
イグトランス (egtra)
Message:

BOOST_FOREACHを可能なものはVC++ 2005 for eachへ置換(やや速くなる)。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/compiler_x86/Compile_Statement.cpp

    r720 r750  
    289289int GetLabelAddress(char *LabelName,int LineNum){
    290290    if(LabelName){
    291         BOOST_FOREACH( const GotoLabel &label, compiler.codeGenerator.gotoLabels )
     291        foreach( const GotoLabel &label, compiler.codeGenerator.gotoLabels )
    292292        {
    293293            if( label.name.size() > 0 )
     
    301301    }
    302302    else{
    303         BOOST_FOREACH( const GotoLabel &label, compiler.codeGenerator.gotoLabels )
     303        foreach( const GotoLabel &label, compiler.codeGenerator.gotoLabels )
    304304        {
    305305            if( label.name.size() == 0 )
Note: See TracChangeset for help on using the changeset viewer.