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

    r745 r750  
    5050    void ResolveJmpFinally()
    5151    {
    52         BOOST_FOREACH( const PertialSchedule *pPertialSchedule, finallySchedules )
     52        foreach( const PertialSchedule *pPertialSchedule, finallySchedules )
    5353        {
    5454            compiler.codeGenerator.opfix_JmpPertialSchedule( pPertialSchedule );
     
    192192
    193193        int pos = 0;
    194         BOOST_FOREACH( const CatchScope &catchScope, catchScopes )
     194        foreach( const CatchScope &catchScope, catchScopes )
    195195        {
    196196            // パラメータのクラス名
     
    214214
    215215        pos = 0;
    216         BOOST_FOREACH( const CatchScope &catchScope, catchScopes )
     216        foreach( const CatchScope &catchScope, catchScopes )
    217217        {
    218218            // パラメータのクラス名
Note: See TracChangeset for help on using the changeset viewer.