diff options
Diffstat (limited to 'clang/lib/Sema/Sema.h')
-rw-r--r-- | clang/lib/Sema/Sema.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/lib/Sema/Sema.h b/clang/lib/Sema/Sema.h index 7f686369a8d..c442b84669e 100644 --- a/clang/lib/Sema/Sema.h +++ b/clang/lib/Sema/Sema.h @@ -755,7 +755,6 @@ public: /// pointers used to reconstruct new'ed Decl*[] array containing /// found ambiguous decls. LookupResult is owner of this array. AmbiguousLookupStoresDecls - } StoredKind; /// The first lookup result, whose contents depend on the kind of @@ -939,6 +938,9 @@ public: iterator begin(); iterator end(); + + /// \brief Free the memory associated with this lookup. + void Destroy(); }; private: |