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

    r721 r750  
    182182    extern WithInfos withInfos;
    183183    buffer[0]=0;
    184     BOOST_FOREACH( const WithInfo &withInfo, withInfos )
     184    foreach( const WithInfo &withInfo, withInfos )
    185185    {
    186186        lstrcat( buffer, withInfo.name.c_str() );
     
    192192    std::string tmp;
    193193    tmp.reserve(1024);
    194     BOOST_FOREACH( const WithInfo &withInfo, withInfos )
     194    foreach( const WithInfo &withInfo, withInfos )
    195195    {
    196196        tmp+=withInfo.name;
Note: See TracChangeset for help on using the changeset viewer.