Changeset 97 in dev for BasicCompiler64/Compile_CallProc.cpp
- Timestamp:
- Apr 16, 2007, 3:52:40 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/Compile_CallProc.cpp
r77 r97 96 96 97 97 bool Opcode_CallProc(const char *Parameter,UserProc *pUserProc,DWORD dwFlags,const char *ObjectName,int RefType){ 98 // TODO: RefTypeは不必要なので削除する 98 99 int i2; 99 100 … … 120 121 if( pUserProc->GetParentClassPtr() ){ 121 122 //クラスのメンバ関数を呼び出す場合はアクセスチェックを行う 122 if(ObjectName[0] ){123 if(ObjectName[0] && (dwFlags&PROCFLAG_NEW)==0){ 123 124 if(lstrcmpi(ObjectName,"Super")==0){ 124 125 //クラスメンバ関数内から基底クラスの呼び出し … … 303 304 /////////////////////////////// 304 305 305 if(ObjectName[0] ){306 if(ObjectName[0] && (dwFlags&PROCFLAG_NEW)==0){ 306 307 if(lstrcmpi(ObjectName,"Super")==0) goto InClassMember; 307 308 else{
Note:
See TracChangeset
for help on using the changeset viewer.