Changeset 346 in dev for trunk/abdev/BasicCompiler64


Ignore:
Timestamp:
Oct 10, 2007, 4:01:07 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler64/Compile_Object.cpp

    r345 r346  
    219219            }
    220220        }
    221         BOOST_FOREACH( const ::Interface &objInterface, classObj.GetInterfaces() )
     221        BOOST_FOREACH( const ::Interface *pInterface, classObj.GetInterfaces() )
    222222        {
    223             BOOST_FOREACH( const CMethod *pMethod, objInterface.GetDynamicMethods() )
     223            BOOST_FOREACH( const CMethod *pMethod, pInterface->GetDynamicMethods() )
    224224            {
    225225                if( pMethod->IsVirtual() )
Note: See TracChangeset for help on using the changeset viewer.