Changeset 135 in dev for BasicCompiler64/Compile_Object.cpp
- Timestamp:
- Jun 6, 2007, 12:58:40 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/Compile_Object.cpp
r131 r135 34 34 35 35 std::vector<UserProc *> subs; 36 pobj_c-> EnumMethod( pobj_c->GetName().c_str(), subs );36 pobj_c->GetMethods().Enum( pobj_c->GetName().c_str(), subs ); 37 37 38 38 UserProc *pUserProc; … … 54 54 // obj._System_SetType( _System_TypeBase.Search( strNamespace, name ) ) 55 55 subs.clear(); 56 pobj_c-> EnumMethod( "_System_SetType", subs );56 pobj_c->GetMethods().Enum( "_System_SetType", subs ); 57 57 if( subs.size() == 1 ){ 58 58 char temporary[VN_SIZE]; … … 179 179 180 180 181 CMethod *method = classObj.GetDestructorMethod();181 const CMethod *method = classObj.GetDestructorMethod(); 182 182 if( method == NULL ) return; 183 183
Note:
See TracChangeset
for help on using the changeset viewer.