Changeset 750 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/Compiler.cpp
- Timestamp:
- Sep 24, 2008, 2:02:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/Compiler.cpp
r745 r750 24 24 Compiler::~Compiler() 25 25 { 26 BOOST_FOREACH( ObjectModule *pStaticLibrary, staticLibraries )26 foreach( ObjectModule *pStaticLibrary, staticLibraries ) 27 27 { 28 28 delete pStaticLibrary; … … 33 33 void Compiler::PreStaticLink( const ObjectModules &staticLibraries ) 34 34 { 35 BOOST_FOREACH( const ObjectModule *pStaticLibrary, staticLibraries )35 foreach( const ObjectModule *pStaticLibrary, staticLibraries ) 36 36 { 37 37 // 関連オブジェクトモジュールの名前リスト … … 41 41 void Compiler::StaticLink( ObjectModules &staticLibraries ) 42 42 { 43 BOOST_FOREACH( ObjectModule *pStaticLibrary, staticLibraries )43 foreach( ObjectModule *pStaticLibrary, staticLibraries ) 44 44 { 45 45 if( &this->GetObjectModule() == pStaticLibrary ) … … 160 160 // 仮型パラメータを実型パラメータに変換 161 161 Types actualTypes; 162 BOOST_FOREACH( const GenericType &genericType, genericTypes )162 foreach( const GenericType &genericType, genericTypes ) 163 163 { 164 164 actualTypes.push_back( genericType.GetType() ); … … 378 378 // テンプレート展開済みのクラスの場合 379 379 std::string actualGenericTypesName; 380 BOOST_FOREACH( const Type &typeParameter, type.GetClass().expandedClassActualTypeParameters )380 foreach( const Type &typeParameter, type.GetClass().expandedClassActualTypeParameters ) 381 381 { 382 382 if( actualGenericTypesName.size() )
Note:
See TracChangeset
for help on using the changeset viewer.