Changeset 523 in dev for trunk/ab5.0/abdev/compiler_x86


Ignore:
Timestamp:
May 1, 2008, 11:03:14 PM (16 years ago)
Author:
dai_9181
Message:

ヘッダファイルを整理中

Location:
trunk/ab5.0/abdev/compiler_x86
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/compiler_x86/CParameter.cpp

    r465 r523  
    66#include "opcode.h"
    77
    8 int ParamImpl::NewTempParameters( const string &procName, const Parameters &params, int SecondParmNum ){
     8int ParamImpl::NewTempParameters( const std::string &procName, const Parameters &params, int SecondParmNum ){
    99    if( SecondParmNum == -1 ) SecondParmNum = (int)params.size();
    1010
     
    174174}
    175175
    176 int ParamImpl::SetParameter( const string &procName, const Parameters &params, int SecondParmNum, const UserProc *pUserProc ){
     176int ParamImpl::SetParameter( const std::string &procName, const Parameters &params, int SecondParmNum, const UserProc *pUserProc ){
    177177    if( SecondParmNum == -1 ) SecondParmNum = (int)params.size();
    178178
  • trunk/ab5.0/abdev/compiler_x86/Compile_Calc.cpp

    r465 r523  
    611611    if( varType.IsObject() && compiler.GetObjectModule().meta.GetBlittableTypes().IsExist( calcType ) ){
    612612        // Blittable型をオブジェクトとして扱う
    613         vector<const UserProc *> userProcs;
     613        std::vector<const UserProc *> userProcs;
    614614        compiler.GetObjectModule().meta.GetBlittableTypes().GetClass( calcType ).GetStaticMethods().Enum( "_Create", userProcs );
    615615        if( userProcs.size() != 1 ){
  • trunk/ab5.0/abdev/compiler_x86/Compile_Func.cpp

    r484 r523  
    524524    }
    525525}
    526 void Opcode_Func_SizeOf( const string &typeName ){
     526void Opcode_Func_SizeOf( const std::string &typeName ){
    527527    Type tempType;
    528528    if( !compiler.StringToType( typeName, tempType ) ){
  • trunk/ab5.0/abdev/compiler_x86/MakePeHdr.cpp

    r519 r523  
    349349#ifdef _DEBUG
    350350    {
    351         ofstream ofs( ( Jenga::Common::Environment::GetAppDir() + "\\middle_code.txt" ).c_str() );
    352         ofs << basbuf << endl;
     351        std::ofstream ofs( ( Jenga::Common::Environment::GetAppDir() + "\\middle_code.txt" ).c_str() );
     352        ofs << basbuf << std::endl;
    353353        ofs.close();
    354354    }
  • trunk/ab5.0/abdev/compiler_x86/NumOpe.cpp

    r488 r523  
    255255    // 動的メソッドを検索
    256256    ///////////////////////////////////////////////////////////////////
    257     vector<const UserProc *> userProcs;
     257    std::vector<const UserProc *> userProcs;
    258258
    259259    char methodName[VN_SIZE], lpPtrOffset[VN_SIZE], parameter[VN_SIZE], dummy[1];
  • trunk/ab5.0/abdev/compiler_x86/Opcode.h

    r436 r523  
    197197
    198198    void ApplyDefaultParameters( const Parameters &params );
    199     bool ErrorCheck( const string &procName, const Parameters &params, int SecondParmNum = -1 );
     199    bool ErrorCheck( const std::string &procName, const Parameters &params, int SecondParmNum = -1 );
    200200    void MacroParameterSupport( const Parameters &params );
    201201    void SetStructParameter( const Type &baseType, const char *expression );
    202     int SetParameter( const string &procName, const Parameters &params, int SecondParmNum = -1, const UserProc *pUserProc = NULL );
     202    int SetParameter( const std::string &procName, const Parameters &params, int SecondParmNum = -1, const UserProc *pUserProc = NULL );
    203203
    204204    //一時オブジェクトパラメータの生成と破棄
    205     int NewTempParameters( const string &procName, const Parameters &params, int SecondParmNum = -1 );
     205    int NewTempParameters( const std::string &procName, const Parameters &params, int SecondParmNum = -1 );
    206206    void DeleteTempParameters();
    207207};
Note: See TracChangeset for help on using the changeset viewer.