aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/DeclBase.h
diff options
context:
space:
mode:
authorSean Callanan <scallanan@apple.com>2013-05-04 02:04:27 +0000
committerSean Callanan <scallanan@apple.com>2013-05-04 02:04:27 +0000
commitcd904e8864637e427f5ea3bf35a26e79b3dbbadf (patch)
tree92717dfb288bb3edda2ac33e8bc06519f6ae95ea /include/clang/AST/DeclBase.h
parentdf6217ec356f1e8f440ea7222be3603c011a295d (diff)
Added a function to check whether a Decl is in
the list of Decls for a given DeclContext. This is useful for LLDB's implementation of FindExternalLexicalDecls. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181093 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/DeclBase.h')
-rw-r--r--include/clang/AST/DeclBase.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/AST/DeclBase.h b/include/clang/AST/DeclBase.h
index 5d5d45267a..a4a52e2a78 100644
--- a/include/clang/AST/DeclBase.h
+++ b/include/clang/AST/DeclBase.h
@@ -1412,6 +1412,9 @@ public:
/// @brief Removes a declaration from this context.
void removeDecl(Decl *D);
+
+ /// @brief Checks whether a declaration is in this context.
+ bool containsDecl(Decl *D) const;
/// lookup_iterator - An iterator that provides access to the results
/// of looking up a name within this context.