Ignore:
Timestamp:
Aug 28, 2007, 3:45:06 AM (17 years ago)
Author:
dai_9181
Message:

Protectedメソッドを派生クラス内のメソッドでSuperと指定するとエラーになるバグを修正。
クラスメソッド内でImportsされた名前空間内の情報が扱えないバグを修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/src/Procedure.cpp

    r209 r306  
    3434const NamespaceScopesCollection &UserProc::GetImportedNamespaces() const
    3535{
     36    if( pParentClass )
     37    {
     38        return pParentClass->GetImportedNamespaces();
     39    }
    3640    return importedNamespaces;
    3741}
Note: See TracChangeset for help on using the changeset viewer.