Ignore:
Timestamp:
Dec 30, 2008, 1:56:34 PM (15 years ago)
Author:
dai
Message:

[750]をx64版にマージ

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/compiler_x64/Compile_Object.cpp

    r729 r768  
    104104    {
    105105        std::string tempMessage;
    106         BOOST_FOREACH( const CMethod *pMethod, pClass->GetDynamicMethods() ){
     106        foreach( const CMethod *pMethod, pClass->GetDynamicMethods() ){
    107107            if(pMethod->IsVirtual()){
    108108                if(pMethod->IsAbstract()){
     
    117117
    118118        // インターフェイスのvtbl
    119         BOOST_FOREACH( const ::Interface *pInterface, pClass->GetInterfaces() )
     119        foreach( const ::Interface *pInterface, pClass->GetInterfaces() )
    120120        {
    121             BOOST_FOREACH( const CMethod *pMethod, pInterface->GetDynamicMethods() ){
     121            foreach( const CMethod *pMethod, pInterface->GetDynamicMethods() ){
    122122                if(pMethod->IsVirtual()){
    123123                    if(pMethod->IsAbstract()){
     
    256256
    257257        // 仮想関数になるメソッドに使用チェックをつける
    258         BOOST_FOREACH( const CMethod *pMethod, pClass->GetDynamicMethods() )
     258        foreach( const CMethod *pMethod, pClass->GetDynamicMethods() )
    259259        {
    260260            if( pMethod->IsVirtual() )
     
    263263            }
    264264        }
    265         BOOST_FOREACH( const ::Interface *pInterface, pClass->GetInterfaces() )
     265        foreach( const ::Interface *pInterface, pClass->GetInterfaces() )
    266266        {
    267             BOOST_FOREACH( const CMethod *pMethod, pInterface->GetDynamicMethods() )
     267            foreach( const CMethod *pMethod, pInterface->GetDynamicMethods() )
    268268            {
    269269                if( pMethod->IsVirtual() )
Note: See TracChangeset for help on using the changeset viewer.