Changeset 135 in dev for BasicCompiler64/OperatorProc.cpp
- Timestamp:
- Jun 6, 2007, 12:58:40 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/OperatorProc.cpp
r76 r135 10 10 //////////////////////////////////////////////// 11 11 12 CMethod *method = pobj_c->GetDestructorMethod();12 const CMethod *method = pobj_c->GetDestructorMethod(); 13 13 if( method ){ 14 14 //mov rcx,reg … … 33 33 34 34 std::vector<UserProc *> subs; 35 pobj_c-> EnumMethod( idCalc, subs );35 pobj_c->GetMethods().Enum( idCalc, subs ); 36 36 if( subs.size() == 0 ){ 37 37 return 0; … … 320 320 321 321 std::vector<UserProc *> subs; 322 pobj_Class-> EnumMethod( CALC_ARRAY_GET, subs );322 pobj_Class->GetMethods().Enum( CALC_ARRAY_GET, subs ); 323 323 if( subs.size() == 0 ){ 324 324 return;
Note:
See TracChangeset
for help on using the changeset viewer.