From ec906484f8be6d98d0c803baa9f5fee19e8cf0dc Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Thu, 26 Mar 2015 23:59:47 +0000 Subject: [PATCH] [Modules] Clean up some code that was manually replicating what SmallSetVector provides directly. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@233334 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Serialization/ASTWriter.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/clang/Serialization/ASTWriter.h b/include/clang/Serialization/ASTWriter.h index d3885b2557..41b1cab75d 100644 --- a/include/clang/Serialization/ASTWriter.h +++ b/include/clang/Serialization/ASTWriter.h @@ -387,8 +387,7 @@ private: /// \brief The set of declarations that may have redeclaration chains that /// need to be serialized. - llvm::SetVector, - llvm::SmallPtrSet > Redeclarations; + llvm::SmallSetVector Redeclarations; /// \brief Statements that we've encountered while serializing a /// declaration or type. -- 2.50.1