Ignore:
Timestamp:
May 10, 2008, 7:42:22 PM (16 years ago)
Author:
dai_9181
Message:

インクルード順序を整理

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/src/NativeCode.cpp

    r551 r597  
    11#include "stdafx.h"
    2 
    3 #include <Compiler.h>
    42
    53#define BREAK_EIP(checkEip)  (obp+0x00401000>=checkEip)
     
    108106}
    109107
    110 void NativeCode::NextSourceLine( int currentSourceIndex )
     108void NativeCode::NextSourceLine( int currentSourceIndex, int nowLine )
    111109{
    112110    if( sourceLines.size() )
     
    114112        if( sourceLines.back().GetNativeCodePos() == GetSize() )
    115113        {
    116             sourceLines.back().SetSourceCodePos( cp );
     114            sourceLines.back().SetSourceCodePos( nowLine );
    117115            return;
    118116        }
     
    135133            GetSize(),
    136134            currentSourceIndex,
    137             cp,
     135            nowLine,
    138136            sourceLineType
    139137        )
Note: See TracChangeset for help on using the changeset viewer.