From 34886cc46eecce63f799bdd8dd185b5fae38d4e5 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 18 Nov 2015 06:54:13 +0000 Subject: [PATCH] Update for llvm change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253440 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Lex/HeaderSearchOptions.h | 2 +- lib/CodeGen/CGObjCMac.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/clang/Lex/HeaderSearchOptions.h b/include/clang/Lex/HeaderSearchOptions.h index af4e7a1a30..915dbf74b2 100644 --- a/include/clang/Lex/HeaderSearchOptions.h +++ b/include/clang/Lex/HeaderSearchOptions.h @@ -141,7 +141,7 @@ public: /// \brief The set of macro names that should be ignored for the purposes /// of computing the module hash. - llvm::SetVector ModulesIgnoreMacros; + llvm::SmallSetVector ModulesIgnoreMacros; /// \brief The set of user-provided virtual filesystem overlay files. std::vector VFSOverlayFiles; diff --git a/lib/CodeGen/CGObjCMac.cpp b/lib/CodeGen/CGObjCMac.cpp index 4eaa2e51f2..a5f504e141 100644 --- a/lib/CodeGen/CGObjCMac.cpp +++ b/lib/CodeGen/CGObjCMac.cpp @@ -833,7 +833,7 @@ protected: llvm::DenseMap MethodVarNames; /// DefinedCategoryNames - list of category names in form Class_Category. - llvm::SetVector DefinedCategoryNames; + llvm::SmallSetVector DefinedCategoryNames; /// MethodVarTypes - uniqued method type signatures. We have to use /// a StringMap here because have no other unique reference. -- 2.50.1