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