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

ヘッダファイルを整理中

File:
1 edited

Legend:

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

    r477 r523  
    214214            values.insert( std::map<std::string,std::string>::value_type(
    215215                "#call_method_begin#",
    216                 (string)"Function Call(" + dg.paramStr + ") As " + dg.returnTypeName
     216                (std::string)"Function Call(" + dg.paramStr + ") As " + dg.returnTypeName
    217217            ) );
    218218
     
    228228            values.insert( std::map<std::string,std::string>::value_type(
    229229                "#call_method_begin#",
    230                 (string)"Sub Call(" + dg.paramStr + ")"
     230                (std::string)"Sub Call(" + dg.paramStr + ")"
    231231            ) );
    232232
     
    244244    }
    245245/*
    246     ofstream ofs( ( Jenga::Common::Environment::GetAppDir() + "\\generated_delegate_code.log" ).c_str() );
     246    std::ofstream ofs( ( Jenga::Common::Environment::GetAppDir() + "\\generated_delegate_code.log" ).c_str() );
    247247    ofs << destSource;
    248248    ofs.close();
Note: See TracChangeset for help on using the changeset viewer.