Changeset 342 in dev for trunk/abdev/BasicCompiler_Common/Diagnose.cpp
- Timestamp:
- Oct 9, 2007, 1:10:33 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/Diagnose.cpp
r276 r342 79 79 80 80 // 動的メソッド 81 BOOST_FOREACH( const CMethod *pMethod, objClass.Get Methods() ){81 BOOST_FOREACH( const CMethod *pMethod, objClass.GetDynamicMethods() ){ 82 82 if( pMethod->GetUserProc().IsCompiled() ){ 83 83 codeSizeOfClass += pMethod->GetUserProc().GetCodeSize(); … … 113 113 114 114 // 動的メソッド 115 BOOST_FOREACH( const CMethod *pMethod, objClass.Get Methods() ){115 BOOST_FOREACH( const CMethod *pMethod, objClass.GetDynamicMethods() ){ 116 116 if( pMethod->GetUserProc().IsCompiled() ){ 117 117 codeSizeOfClass += pMethod->GetUserProc().GetCodeSize();
Note:
See TracChangeset
for help on using the changeset viewer.