diff options
author | Sean Callanan <scallanan@apple.com> | 2012-08-23 21:16:40 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2012-08-23 21:16:40 +0000 |
commit | d5a20c19416d7143771b4d503fa808ae01c4e7ad (patch) | |
tree | ce1324d20e3506ad195a18dfea2f8c3583aca70b | |
parent | 890f0f1612b0028b8b16730ae7ed07e295600c76 (diff) |
Added a method to DeclContext that marks the
lookup table as needing to be built.
This is required for LLDB, which provides the
contents of many DeclContexts through a custom
ExternalASTSource.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162471 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/DeclBase.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/clang/AST/DeclBase.h b/include/clang/AST/DeclBase.h index 0f596095f7..ec4bfdd72b 100644 --- a/include/clang/AST/DeclBase.h +++ b/include/clang/AST/DeclBase.h @@ -1479,6 +1479,13 @@ public: inline ddiag_iterator ddiag_end() const; // Low-level accessors + + /// \brief Mark the lookup table as needing to be built. This should be + /// used only if setHasExternalLexicalStorage() has been called. + void setMustBuildLookupTable() { + assert(ExternalLexicalStorage && "Requires external lexical storage"); + LookupPtr.setInt(true); + } /// \brief Retrieve the internal representation of the lookup structure. /// This may omit some names if we are lazily building the structure. |