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/ab_common/src/Lexical/Interface.cpp

    r640 r750  
    88{
    99    //メソッドをコピー
    10     BOOST_FOREACH( const CMethod *pBaseMethod, pInterfaceClass->GetDynamicMethods() )
     10    foreach( const CMethod *pBaseMethod, pInterfaceClass->GetDynamicMethods() )
    1111    {
    1212        CMethod *pMethod = new DynamicMethod( *pBaseMethod );
     
    5757    {
    5858        std::string actualGenericTypesName;
    59         BOOST_FOREACH( const Type &typeParameter, actualTypeParameters )
     59        foreach( const Type &typeParameter, actualTypeParameters )
    6060        {
    6161            if( actualGenericTypesName.size() )
     
    7474{
    7575    // 動的メソッド
    76     BOOST_FOREACH( CMethod *pMethod, GetDynamicMethods() )
     76    foreach( CMethod *pMethod, GetDynamicMethods() )
    7777    {
    7878        pMethod->Resolve( resolver, resolveErrors );
Note: See TracChangeset for help on using the changeset viewer.