Changeset 135 in dev for BasicCompiler32/OperatorProc.cpp
- Timestamp:
- Jun 6, 2007, 12:58:40 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/OperatorProc.cpp
r76 r135 5 5 if(!IsSafeReg(reg)) SetError(300,NULL,cp); 6 6 7 CMethod *method = pobj_c->GetDestructorMethod();7 const CMethod *method = pobj_c->GetDestructorMethod(); 8 8 if( method ){ 9 9 //push reg … … 28 28 29 29 std::vector<UserProc *> subs; 30 pobj_c-> EnumMethod( idCalc, subs );30 pobj_c->GetMethods().Enum( idCalc, subs ); 31 31 if( subs.size() == 0 ){ 32 32 return 0; … … 250 250 void CallIndexerGetterProc(const CClass *pobj_Class,char *ObjectName,char *Parameter,Type &resultType){ 251 251 std::vector<UserProc *> subs; 252 pobj_Class-> EnumMethod( CALC_ARRAY_GET, subs );252 pobj_Class->GetMethods().Enum( CALC_ARRAY_GET, subs ); 253 253 if( subs.size() == 0 ){ 254 254 return;
Note:
See TracChangeset
for help on using the changeset viewer.