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/include/Lexical/Class.h

    r728 r750  
    194194    {
    195195        int i = 0;
    196         BOOST_FOREACH( const GenericType &genericType, formalGenericTypes )
     196        foreach( const GenericType &genericType, formalGenericTypes )
    197197        {
    198198            if( genericType.GetName() == name )
     
    206206    bool IsExistFormalGenericTypeParameter( const std::string &name ) const
    207207    {
    208         BOOST_FOREACH( const GenericType &genericType, formalGenericTypes )
     208        foreach( const GenericType &genericType, formalGenericTypes )
    209209        {
    210210            if( genericType.GetName() == name )
Note: See TracChangeset for help on using the changeset viewer.