Changeset 768 in dev for trunk/ab5.0/abdev/compiler_x64/MakePeHdr.cpp
- Timestamp:
- Dec 30, 2008, 1:56:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/compiler_x64/MakePeHdr.cpp
r749 r768 115 115 ActiveBasic::Common::Lexical::ResolveErrors resolveErrors; 116 116 compiler.GetObjectModule().Resolve( resolveErrors ); 117 BOOST_FOREACH( const ResolveError &resolveError, resolveErrors )117 foreach( const ResolveError &resolveError, resolveErrors ) 118 118 { 119 119 compiler.errorMessenger.Output( ErrorInfo( 13, resolveError.GetTargetItemName(), -1 ) ); … … 520 520 // 使用するDLL関数のチェック 521 521 //////////////////////////////// 522 BOOST_FOREACH( const Schedule &schedule, compiler.linker.GetNativeCode().GetSchedules() )522 foreach( const Schedule &schedule, compiler.linker.GetNativeCode().GetSchedules() ) 523 523 { 524 524 if( schedule.GetType() == Schedule::DllProc ) … … 831 831 //グローバル変数情報を扱う構造体も初期バッファの有無による配置を行う 832 832 //(デバッグ情報で利用される) 833 BOOST_FOREACH( Variable *pVar, compiler.GetObjectModule().meta.GetGlobalVars() ){833 foreach( Variable *pVar, compiler.GetObjectModule().meta.GetGlobalVars() ){ 834 834 if(pVar->GetOffsetAddress()&0x80000000){ 835 835 pVar->SetOffsetAddress(
Note:
See TracChangeset
for help on using the changeset viewer.