Changeset 304 in dev for trunk/abdev/BasicCompiler_Common/hash.cpp
- Timestamp:
- Aug 26, 2007, 2:54:38 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/hash.cpp
r265 r304 63 63 bool isStatic = false; 64 64 const CClass *pobj_c = NULL; 65 if(lstrcmpi(ObjName,"Super")==0){ 65 if(lstrcmpi(ObjName,"Super")==0) 66 { 66 67 //クラスメンバ関数内から基底クラスの呼び出し 67 pobj_c= compiler.pCompilingClass;68 pobj_c=&compiler.pCompilingClass->GetSuperClass(); 68 69 } 69 else{ 70 else 71 { 70 72 //"->"によってオブジェクトを指定する通常のメンバ関数呼び出し 71 73 Type type; … … 90 92 pobj_c->GetMethods().Enum( NestMember, subs ); 91 93 } 94 92 95 return; 93 96 }
Note:
See TracChangeset
for help on using the changeset viewer.