diff options
Diffstat (limited to 'include/clang')
-rw-r--r-- | include/clang/Sema/Template.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/Sema/Template.h b/include/clang/Sema/Template.h index 492e5800bd..8ee8f35ccb 100644 --- a/include/clang/Sema/Template.h +++ b/include/clang/Sema/Template.h @@ -187,10 +187,10 @@ namespace clang { /// this template instantiation. Sema &SemaRef; - typedef llvm::DenseMap<const Decl *, - llvm::PointerUnion<Decl *, DeclArgumentPack *> > - LocalDeclsMap; - + typedef llvm::SmallDenseMap< + const Decl *, llvm::PointerUnion<Decl *, DeclArgumentPack *>, 4> + LocalDeclsMap; + /// \brief A mapping from local declarations that occur /// within a template to their instantiations. /// |