Ignore:
Timestamp:
Dec 30, 2008, 1:56:34 PM (16 years ago)
Author:
dai
Message:

[750]をx64版にマージ

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/compiler_x64/MakePeHdr.cpp

    r749 r768  
    115115    ActiveBasic::Common::Lexical::ResolveErrors resolveErrors;
    116116    compiler.GetObjectModule().Resolve( resolveErrors );
    117     BOOST_FOREACH( const ResolveError &resolveError, resolveErrors )
     117    foreach( const ResolveError &resolveError, resolveErrors )
    118118    {
    119119        compiler.errorMessenger.Output( ErrorInfo( 13, resolveError.GetTargetItemName(), -1 ) );
     
    520520    // 使用するDLL関数のチェック
    521521    ////////////////////////////////
    522     BOOST_FOREACH( const Schedule &schedule, compiler.linker.GetNativeCode().GetSchedules() )
     522    foreach( const Schedule &schedule, compiler.linker.GetNativeCode().GetSchedules() )
    523523    {
    524524        if( schedule.GetType() == Schedule::DllProc )
     
    831831    //グローバル変数情報を扱う構造体も初期バッファの有無による配置を行う
    832832    //(デバッグ情報で利用される)
    833     BOOST_FOREACH( Variable *pVar, compiler.GetObjectModule().meta.GetGlobalVars() ){
     833    foreach( Variable *pVar, compiler.GetObjectModule().meta.GetGlobalVars() ){
    834834        if(pVar->GetOffsetAddress()&0x80000000){
    835835            pVar->SetOffsetAddress(
Note: See TracChangeset for help on using the changeset viewer.