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

ヘッダファイルを整理中

File:
1 edited

Legend:

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

    r511 r523  
    458458    if( this->pParentClass && isStatic == false ){
    459459        //オブジェクトメンバの場合は、第一パラメータを_System_LocalThis引き渡し用として利用
    460         string name = "_System_LocalThis";
     460        std::string name = "_System_LocalThis";
    461461        Type type( DEF_PTR_VOID );
    462462        this->realParams.push_back( new Parameter( name, type ) );
     
    467467        //※第一パラメータ(Thisポインタありの場合は第二パラメータ)を戻り値用の参照宣言にする
    468468
    469         string name = this->GetName();
     469        std::string name = this->GetName();
    470470        if(name[0]==1&&name[1]==ESC_OPERATOR){
    471471            name="_System_ReturnValue";
     
    10041004}
    10051005
    1006 int ProcPointers::Add( const string &typeExpression )
     1006int ProcPointers::Add( const std::string &typeExpression )
    10071007{
    10081008    DWORD dwProcType = (DWORD)typeExpression[2];
    1009     const string &paramStr = typeExpression.substr( 3 );
     1009    const std::string &paramStr = typeExpression.substr( 3 );
    10101010
    10111011    Procedure::Kind kind = Procedure::Sub;
Note: See TracChangeset for help on using the changeset viewer.