Changeset 750 in dev for trunk/ab5.0/abdev/ab_common/src/Lexical/Interface.cpp
- Timestamp:
- Sep 24, 2008, 2:02:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/ab_common/src/Lexical/Interface.cpp
r640 r750 8 8 { 9 9 //メソッドをコピー 10 BOOST_FOREACH( const CMethod *pBaseMethod, pInterfaceClass->GetDynamicMethods() )10 foreach( const CMethod *pBaseMethod, pInterfaceClass->GetDynamicMethods() ) 11 11 { 12 12 CMethod *pMethod = new DynamicMethod( *pBaseMethod ); … … 57 57 { 58 58 std::string actualGenericTypesName; 59 BOOST_FOREACH( const Type &typeParameter, actualTypeParameters )59 foreach( const Type &typeParameter, actualTypeParameters ) 60 60 { 61 61 if( actualGenericTypesName.size() ) … … 74 74 { 75 75 // 動的メソッド 76 BOOST_FOREACH( CMethod *pMethod, GetDynamicMethods() )76 foreach( CMethod *pMethod, GetDynamicMethods() ) 77 77 { 78 78 pMethod->Resolve( resolver, resolveErrors );
Note:
See TracChangeset
for help on using the changeset viewer.