Changeset 750 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/Diagnose.cpp
- Timestamp:
- Sep 24, 2008, 2:02:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/Diagnose.cpp
r527 r750 74 74 75 75 // 動的メソッド 76 BOOST_FOREACH( const CMethod *pMethod, objClass.GetDynamicMethods() ){76 foreach( const CMethod *pMethod, objClass.GetDynamicMethods() ){ 77 77 if( pMethod->GetUserProc().IsCompiled() ){ 78 78 codeSizeOfClass += pMethod->GetUserProc().GetCodeSize(); … … 81 81 82 82 // 静的メソッド 83 BOOST_FOREACH( const CMethod *pMethod, objClass.GetStaticMethods() ){83 foreach( const CMethod *pMethod, objClass.GetStaticMethods() ){ 84 84 codeSizeOfClass += pMethod->GetUserProc().GetCodeSize(); 85 85 } … … 108 108 109 109 // 動的メソッド 110 BOOST_FOREACH( const CMethod *pMethod, objClass.GetDynamicMethods() ){110 foreach( const CMethod *pMethod, objClass.GetDynamicMethods() ){ 111 111 if( pMethod->GetUserProc().IsCompiled() ){ 112 112 codeSizeOfClass += pMethod->GetUserProc().GetCodeSize(); … … 115 115 116 116 // 静的メソッド 117 BOOST_FOREACH( const CMethod *pMethod, objClass.GetStaticMethods() ){117 foreach( const CMethod *pMethod, objClass.GetStaticMethods() ){ 118 118 codeSizeOfClass += pMethod->GetUserProc().GetCodeSize(); 119 119 }
Note:
See TracChangeset
for help on using the changeset viewer.