From: Chandler Carruth Date: Thu, 26 Mar 2015 23:59:47 +0000 (+0000) Subject: [Modules] Clean up some code that was manually replicating what X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ec906484f8be6d98d0c803baa9f5fee19e8cf0dc;p=clang [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 --- 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.