Changeset 750 in dev for trunk/ab5.0/abdev/compiler_x86/Compile_Object.cpp
- Timestamp:
- Sep 24, 2008, 2:02:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/compiler_x86/Compile_Object.cpp
r728 r750 111 111 { 112 112 std::string tempMessage; 113 BOOST_FOREACH( const CMethod *pMethod, pClass->GetDynamicMethods() ){113 foreach( const CMethod *pMethod, pClass->GetDynamicMethods() ){ 114 114 if(pMethod->IsVirtual()){ 115 115 if(pMethod->IsAbstract()){ … … 124 124 125 125 // インターフェイスのvtbl 126 BOOST_FOREACH( const ::Interface *pInterface, pClass->GetInterfaces() )126 foreach( const ::Interface *pInterface, pClass->GetInterfaces() ) 127 127 { 128 BOOST_FOREACH( const CMethod *pMethod, pInterface->GetDynamicMethods() ){128 foreach( const CMethod *pMethod, pInterface->GetDynamicMethods() ){ 129 129 if(pMethod->IsVirtual()){ 130 130 if(pMethod->IsAbstract()){ … … 261 261 262 262 // 仮想関数になるメソッドに使用チェックをつける 263 BOOST_FOREACH( const CMethod *pMethod, pClass->GetDynamicMethods() )263 foreach( const CMethod *pMethod, pClass->GetDynamicMethods() ) 264 264 { 265 265 if( pMethod->IsVirtual() ) … … 268 268 } 269 269 } 270 BOOST_FOREACH( const ::Interface *pInterface, pClass->GetInterfaces() )270 foreach( const ::Interface *pInterface, pClass->GetInterfaces() ) 271 271 { 272 BOOST_FOREACH( const CMethod *pMethod, pInterface->GetDynamicMethods() )272 foreach( const CMethod *pMethod, pInterface->GetDynamicMethods() ) 273 273 { 274 274 if( pMethod->IsVirtual() )
Note:
See TracChangeset
for help on using the changeset viewer.