From b94af4e2e1edd6055e876f852c8fcdd75a4997e7 Mon Sep 17 00:00:00 2001 From: Roberto Raggi <roberto.raggi@nokia.com> Date: Wed, 11 Aug 2010 10:27:09 +0200 Subject: [PATCH] The method enclosingSymbol() should always return a ScopedSymbol. --- src/shared/cplusplus/Symbol.cpp | 2 +- src/shared/cplusplus/Symbol.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shared/cplusplus/Symbol.cpp b/src/shared/cplusplus/Symbol.cpp index 7b0ff6a0c95..e5a99bcb66f 100644 --- a/src/shared/cplusplus/Symbol.cpp +++ b/src/shared/cplusplus/Symbol.cpp @@ -242,7 +242,7 @@ void Symbol::setScope(Scope *scope) _scope = scope; } -Symbol *Symbol::enclosingSymbol() const +ScopedSymbol *Symbol::enclosingSymbol() const { if (! _scope) return 0; diff --git a/src/shared/cplusplus/Symbol.h b/src/shared/cplusplus/Symbol.h index 3835207ef3b..b83f6766017 100644 --- a/src/shared/cplusplus/Symbol.h +++ b/src/shared/cplusplus/Symbol.h @@ -284,7 +284,7 @@ public: bool isUnavailable() const; void setUnavailable(bool isUnavailable); - Symbol *enclosingSymbol() const; + ScopedSymbol *enclosingSymbol() const; /// Returns the eclosing namespace scope. Scope *enclosingNamespaceScope() const; -- GitLab