summaryrefslogtreecommitdiffstats
path: root/modularize
diff options
context:
space:
mode:
authorMatthias Braun <matze@braunis.de>2016-02-01 22:18:58 +0000
committerMatthias Braun <matze@braunis.de>2016-02-01 22:18:58 +0000
commit8ef589d8b2c36259e2303398682f88827f9c827e (patch)
tree40ec15f41e0c82efed3767f74df2256fee286099 /modularize
parentb38d8ce89d2c1f2d79db730cdcc7d388b9407b1a (diff)
Fix build problem by lower SmallSet<N> to a reasonable value
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@259424 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'modularize')
-rw-r--r--modularize/PreprocessorTracker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modularize/PreprocessorTracker.cpp b/modularize/PreprocessorTracker.cpp
index 551bb3ce..f594cd5a 100644
--- a/modularize/PreprocessorTracker.cpp
+++ b/modularize/PreprocessorTracker.cpp
@@ -1276,7 +1276,7 @@ private:
std::vector<HeaderHandle> HeaderStack;
std::vector<HeaderInclusionPath> InclusionPaths;
InclusionPathHandle CurrentInclusionPathHandle;
- llvm::SmallSet<HeaderHandle, 128> HeadersInThisCompile;
+ llvm::SmallSet<HeaderHandle, 32> HeadersInThisCompile;
std::vector<PPItemKey> IncludeDirectives;
MacroExpansionMap MacroExpansions;
ConditionalExpansionMap ConditionalExpansions;