diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-04-15 12:36:49 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-04-15 12:36:49 +0000 |
commit | 89f0b2d8a2a88609b859e040d0593fcff364e3d0 (patch) | |
tree | f915db7d436de7b98acde54f3ecc8adc03ce0abb /clang/lib/Serialization/ASTReaderInternals.h | |
parent | ccdf735e52404ac6774f0c0a67f5766e8253dc5b (diff) | |
download | bcm5719-llvm-89f0b2d8a2a88609b859e040d0593fcff364e3d0.tar.gz bcm5719-llvm-89f0b2d8a2a88609b859e040d0593fcff364e3d0.zip |
Use forward declarations for ASTDeclContextNameLookupTable and add a missing delete.
It would be nice to use OwningPtr here, but DeclContextInfo is stored in a DenseMap.
llvm-svn: 154763
Diffstat (limited to 'clang/lib/Serialization/ASTReaderInternals.h')
-rw-r--r-- | clang/lib/Serialization/ASTReaderInternals.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/Serialization/ASTReaderInternals.h b/clang/lib/Serialization/ASTReaderInternals.h index 3a1dfcf4b74..da90c3400a2 100644 --- a/clang/lib/Serialization/ASTReaderInternals.h +++ b/clang/lib/Serialization/ASTReaderInternals.h @@ -79,10 +79,6 @@ public: unsigned DataLen); }; -/// \brief The on-disk hash table used for the DeclContext's Name lookup table. -typedef OnDiskChainedHashTable<ASTDeclContextNameLookupTrait> - ASTDeclContextNameLookupTable; - /// \brief Class that performs lookup for an identifier stored in an AST file. class ASTIdentifierLookupTrait { ASTReader &Reader; |