]> granicus.if.org Git - clang/commitdiff
Update for llvm change.
authorRafael Espindola <rafael.espindola@gmail.com>
Wed, 18 Nov 2015 06:54:13 +0000 (06:54 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Wed, 18 Nov 2015 06:54:13 +0000 (06:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253440 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Lex/HeaderSearchOptions.h
lib/CodeGen/CGObjCMac.cpp

index af4e7a1a3042331379907b218a2930712e018a91..915dbf74b2a4d1051a95ee0eb74705714b31ac78 100644 (file)
@@ -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<std::string> ModulesIgnoreMacros;
+  llvm::SmallSetVector<std::string, 16> ModulesIgnoreMacros;
 
   /// \brief The set of user-provided virtual filesystem overlay files.
   std::vector<std::string> VFSOverlayFiles;
index 4eaa2e51f25dbb549698f82a5b25b03e917e8a4b..a5f504e141cc171241d3ad007271249311d612aa 100644 (file)
@@ -833,7 +833,7 @@ protected:
   llvm::DenseMap<Selector, llvm::GlobalVariable*> MethodVarNames;
 
   /// DefinedCategoryNames - list of category names in form Class_Category.
-  llvm::SetVector<std::string> DefinedCategoryNames;
+  llvm::SmallSetVector<std::string, 16> DefinedCategoryNames;
 
   /// MethodVarTypes - uniqued method type signatures. We have to use
   /// a StringMap here because have no other unique reference.