Changeset 306 in dev
- Timestamp:
- Aug 28, 2007, 3:45:06 AM (17 years ago)
- Location:
- trunk/abdev
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_CallProc.cpp
r304 r306 190 190 return false; 191 191 } 192 if( pMethod->IsProtected() ){192 if( !pMethod->GetUserProc().GetParentClass().IsEqualsOrSubClass( pobj_c ) && pMethod->IsProtected() ){ 193 193 SetError(110,pUserProc->GetName(),cp); 194 194 return false; -
trunk/abdev/BasicCompiler_Common/include/option.h
r304 r306 14 14 // バージョン付加文字列 15 15 #ifdef _AMD64_ 16 #define VER_INFO "(x64) (rev.3 06)"16 #define VER_INFO "(x64) (rev.315)" 17 17 #else 18 #define VER_INFO "(rev.3 06)"18 #define VER_INFO "(rev.315)" 19 19 #endif 20 20 -
trunk/abdev/BasicCompiler_Common/src/Procedure.cpp
r209 r306 34 34 const NamespaceScopesCollection &UserProc::GetImportedNamespaces() const 35 35 { 36 if( pParentClass ) 37 { 38 return pParentClass->GetImportedNamespaces(); 39 } 36 40 return importedNamespaces; 37 41 }
Note:
See TracChangeset
for help on using the changeset viewer.