diff options
author | Douglas Gregor <dgregor@apple.com> | 2008-04-21 02:02:58 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2008-04-21 02:02:58 +0000 |
commit | f009795057dc8ca254f5618c80a0a90f07cd44b4 (patch) | |
tree | 5329561e54fb30356a7b47e6827b3021c5d2047c /include/clang/Parse/Scope.h | |
parent | 7b989570f0fe262b6bdbad412577450c81304936 (diff) |
Clean up handling of function redeclarations
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50021 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Scope.h')
-rw-r--r-- | include/clang/Parse/Scope.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Parse/Scope.h b/include/clang/Parse/Scope.h index 92d4cd44dc..5db9b2dd76 100644 --- a/include/clang/Parse/Scope.h +++ b/include/clang/Parse/Scope.h @@ -113,7 +113,7 @@ public: void AddDecl(Action::DeclTy *D) { DeclsInScope.insert(D); } - + /// isDeclScope - Return true if this is the scope that the specified decl is /// declared in. bool isDeclScope(Action::DeclTy *D) { |