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/BasicCompiler_Common/src/LexicalAnalyzer_Delegate.cpp

    r735 r750  
    144144            std::string namespaceScopesCommandStr;
    145145            std::string endNamespaceScopesCommandStr;
    146             BOOST_FOREACH( const std::string &namespaceStr, dg.GetNamespaceScopes() )
     146            foreach( const std::string &namespaceStr, dg.GetNamespaceScopes() )
    147147            {
    148148                if( namespaceScopesCommandStr.size() )
     
    205205        LexicalAnalyzer::ExtractParameterVarNames( dg.GetParamStr().c_str(), paramVarNames, dg.GetSourceIndex() );
    206206        std::string tempParamStrForCall;
    207         BOOST_FOREACH( const std::string &varName, paramVarNames )
     207        foreach( const std::string &varName, paramVarNames )
    208208        {
    209209            if( !tempParamStrForCall.empty() )
Note: See TracChangeset for help on using the changeset viewer.