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/Messenger.cpp

    r719 r750  
    409409{
    410410    int count = 0;
    411     BOOST_FOREACH( const ErrorInfo &errorInfo, errorInfos )
     411    foreach( const ErrorInfo &errorInfo, errorInfos )
    412412    {
    413413        if( !errorInfo.IsWarning() )
     
    425425{
    426426    int count = 0;
    427     BOOST_FOREACH( const ErrorInfo &errorInfo, errorInfos )
     427    foreach( const ErrorInfo &errorInfo, errorInfos )
    428428    {
    429429        if( errorInfo.IsWarning() )
     
    438438{
    439439    const ErrorInfo *pErrorInfo = NULL;
    440     BOOST_FOREACH( const ErrorInfo &errorInfo, errorInfos )
     440    foreach( const ErrorInfo &errorInfo, errorInfos )
    441441    {
    442442        if( errorInfo.GetErrorLineNum() == errorLineNum )
Note: See TracChangeset for help on using the changeset viewer.