diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2015-03-26 23:59:47 +0000 |
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2015-03-26 23:59:47 +0000 |
| commit | 46e3ca1f1703e22caed981fe6ad09d04b0668027 (patch) | |
| tree | 3b4123814b0452ef74db463da02e8a7914a0ca42 /clang | |
| parent | a469eef7ce263953bcace4adde302a82c386655b (diff) | |
| download | bcm5719-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.h | 3 |
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. |

