Changeset 768 in dev for trunk/ab5.0/abdev/compiler_x64/Compile_Object.cpp
- Timestamp:
- Dec 30, 2008, 1:56:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/compiler_x64/Compile_Object.cpp
r729 r768 104 104 { 105 105 std::string tempMessage; 106 BOOST_FOREACH( const CMethod *pMethod, pClass->GetDynamicMethods() ){106 foreach( const CMethod *pMethod, pClass->GetDynamicMethods() ){ 107 107 if(pMethod->IsVirtual()){ 108 108 if(pMethod->IsAbstract()){ … … 117 117 118 118 // インターフェイスのvtbl 119 BOOST_FOREACH( const ::Interface *pInterface, pClass->GetInterfaces() )119 foreach( const ::Interface *pInterface, pClass->GetInterfaces() ) 120 120 { 121 BOOST_FOREACH( const CMethod *pMethod, pInterface->GetDynamicMethods() ){121 foreach( const CMethod *pMethod, pInterface->GetDynamicMethods() ){ 122 122 if(pMethod->IsVirtual()){ 123 123 if(pMethod->IsAbstract()){ … … 256 256 257 257 // 仮想関数になるメソッドに使用チェックをつける 258 BOOST_FOREACH( const CMethod *pMethod, pClass->GetDynamicMethods() )258 foreach( const CMethod *pMethod, pClass->GetDynamicMethods() ) 259 259 { 260 260 if( pMethod->IsVirtual() ) … … 263 263 } 264 264 } 265 BOOST_FOREACH( const ::Interface *pInterface, pClass->GetInterfaces() )265 foreach( const ::Interface *pInterface, pClass->GetInterfaces() ) 266 266 { 267 BOOST_FOREACH( const CMethod *pMethod, pInterface->GetDynamicMethods() )267 foreach( const CMethod *pMethod, pInterface->GetDynamicMethods() ) 268 268 { 269 269 if( pMethod->IsVirtual() )
Note:
See TracChangeset
for help on using the changeset viewer.