Changeset 750 in dev for trunk/ab5.0/abdev/compiler_x86/MakePeHdr.cpp
- Timestamp:
- Sep 24, 2008, 2:02:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/compiler_x86/MakePeHdr.cpp
r749 r750 126 126 ActiveBasic::Common::Lexical::ResolveErrors resolveErrors; 127 127 compiler.GetObjectModule().Resolve( resolveErrors ); 128 BOOST_FOREACH( const ResolveError &resolveError, resolveErrors )128 foreach( const ResolveError &resolveError, resolveErrors ) 129 129 { 130 130 compiler.errorMessenger.Output( ErrorInfo( 13, resolveError.GetTargetItemName(), -1 ) ); … … 551 551 // 使用するDLL関数のチェック 552 552 //////////////////////////////// 553 BOOST_FOREACH( const Schedule &schedule, compiler.linker.GetNativeCode().GetSchedules() )553 foreach( const Schedule &schedule, compiler.linker.GetNativeCode().GetSchedules() ) 554 554 { 555 555 if( schedule.GetType() == Schedule::DllProc ) … … 834 834 //グローバル変数情報を扱う構造体も初期バッファの有無による配置を行う 835 835 //(デバッグ情報で利用される) 836 BOOST_FOREACH( Variable *pVar, compiler.GetObjectModule().meta.GetGlobalVars() ){836 foreach( Variable *pVar, compiler.GetObjectModule().meta.GetGlobalVars() ){ 837 837 if(pVar->GetOffsetAddress()&0x80000000){ 838 838 pVar->SetOffsetAddress(
Note:
See TracChangeset
for help on using the changeset viewer.