Changeset 131 in dev for BasicCompiler64/Compile_Object.cpp
- Timestamp:
- Jun 4, 2007, 7:49:17 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/Compile_Object.cpp
r123 r131 34 34 35 35 std::vector<UserProc *> subs; 36 pobj_c->EnumMethod( pobj_c-> name, subs );36 pobj_c->EnumMethod( pobj_c->GetName().c_str(), subs ); 37 37 38 38 UserProc *pUserProc; 39 39 if( subs.size() > 0 ){ 40 40 //オーバーロードを解決 41 pUserProc=OverloadSolutionWithStrParam(pobj_c-> name,41 pUserProc=OverloadSolutionWithStrParam(pobj_c->GetName().c_str(), 42 42 subs,CreateParameter,""); 43 43 … … 57 57 if( subs.size() == 1 ){ 58 58 char temporary[VN_SIZE]; 59 sprintf( temporary, "_System_TypeBase.Search(\"\",\"%s\"))", pobj_c-> name);59 sprintf( temporary, "_System_TypeBase.Search(\"\",\"%s\"))", pobj_c->GetName().c_str() ); 60 60 61 61 Opcode_CallProc(temporary, … … 97 97 if(classObj.IsAbstract()){ 98 98 //抽象クラスだったとき 99 SetError(125,classObj. name,cp);99 SetError(125,classObj.GetName().c_str(),cp); 100 100 } 101 101
Note:
See TracChangeset
for help on using the changeset viewer.