Ignore:
Timestamp:
Oct 9, 2007, 1:10:33 AM (17 years ago)
Author:
dai_9181
Message:

vtblの構造を変更。vtblMasterListをはさんでvtblを表現した。
その他メンバ名変更。
ClassPrototypeクラスを追加。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/Diagnose.cpp

    r276 r342  
    7979
    8080            // 動的メソッド
    81             BOOST_FOREACH( const CMethod *pMethod, objClass.GetMethods() ){
     81            BOOST_FOREACH( const CMethod *pMethod, objClass.GetDynamicMethods() ){
    8282                if( pMethod->GetUserProc().IsCompiled() ){
    8383                    codeSizeOfClass += pMethod->GetUserProc().GetCodeSize();
     
    113113
    114114            // 動的メソッド
    115             BOOST_FOREACH( const CMethod *pMethod, objClass.GetMethods() ){
     115            BOOST_FOREACH( const CMethod *pMethod, objClass.GetDynamicMethods() ){
    116116                if( pMethod->GetUserProc().IsCompiled() ){
    117117                    codeSizeOfClass += pMethod->GetUserProc().GetCodeSize();
Note: See TracChangeset for help on using the changeset viewer.