Ignore:
Timestamp:
May 2, 2008, 11:25:38 AM (16 years ago)
Author:
dai_9181
Message:

[522][527]を64bit版にマージ。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/compiler_x64/Opcode.h

    r436 r528  
    267267class ParamImpl{
    268268    char *Parms[255];
    269     vector<Type> types;
     269    std::vector<Type> types;
    270270    int ParmsNum;
    271271
     
    297297
    298298    void ApplyDefaultParameters( const Parameters &params );
    299     bool ErrorCheck( const string &procName, const Parameters &params, int SecondParmNum = -1 );
     299    bool ErrorCheck( const std::string &procName, const Parameters &params, int SecondParmNum = -1 );
    300300    void MacroParameterSupport( const Parameters &params );
    301301    void SetStructParameter( int reg, const Type &baseType, const char *expression );
    302     void SetParameter( const string &procName, const Parameters &params, int SecondParmNum = -1, const UserProc *pUserProc = NULL );
     302    void SetParameter( const std::string &procName, const Parameters &params, int SecondParmNum = -1, const UserProc *pUserProc = NULL );
    303303
    304304    //一時オブジェクトパラメータの生成と破棄
    305     int NewTempParameters( const string &procName, const Parameters &params, int SecondParmNum = -1 );
     305    int NewTempParameters( const std::string &procName, const Parameters &params, int SecondParmNum = -1 );
    306306    void DeleteTempParameters();
    307307
Note: See TracChangeset for help on using the changeset viewer.