summaryrefslogtreecommitdiffstats
path: root/clang
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2015-03-26 23:59:47 +0000
committerChandler Carruth <chandlerc@gmail.com>2015-03-26 23:59:47 +0000
commit46e3ca1f1703e22caed981fe6ad09d04b0668027 (patch)
tree3b4123814b0452ef74db463da02e8a7914a0ca42 /clang
parenta469eef7ce263953bcace4adde302a82c386655b (diff)
downloadbcm5719-llvm-46e3ca1f1703e22caed981fe6ad09d04b0668027.tar.gz
bcm5719-llvm-46e3ca1f1703e22caed981fe6ad09d04b0668027.zip
[Modules] Clean up some code that was manually replicating what
SmallSetVector provides directly. llvm-svn: 233334
Diffstat (limited to 'clang')
-rw-r--r--clang/include/clang/Serialization/ASTWriter.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/include/clang/Serialization/ASTWriter.h b/clang/include/clang/Serialization/ASTWriter.h
index d3885b2557d..41b1cab75d5 100644
--- a/clang/include/clang/Serialization/ASTWriter.h
+++ b/clang/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<Decl *, SmallVector<Decl *, 4>,
- llvm::SmallPtrSet<Decl *, 4> > Redeclarations;
+ llvm::SmallSetVector<Decl *, 4> Redeclarations;
/// \brief Statements that we've encountered while serializing a
/// declaration or type.
OpenPOWER on IntegriCloud