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
This commit is contained in:
Matthias Braun 2016-02-01 22:18:58 +00:00
Родитель b38d8ce89d
Коммит 8ef589d8b2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1276,7 +1276,7 @@ private:
std::vector<HeaderHandle> HeaderStack; std::vector<HeaderHandle> HeaderStack;
std::vector<HeaderInclusionPath> InclusionPaths; std::vector<HeaderInclusionPath> InclusionPaths;
InclusionPathHandle CurrentInclusionPathHandle; InclusionPathHandle CurrentInclusionPathHandle;
llvm::SmallSet<HeaderHandle, 128> HeadersInThisCompile; llvm::SmallSet<HeaderHandle, 32> HeadersInThisCompile;
std::vector<PPItemKey> IncludeDirectives; std::vector<PPItemKey> IncludeDirectives;
MacroExpansionMap MacroExpansions; MacroExpansionMap MacroExpansions;
ConditionalExpansionMap ConditionalExpansions; ConditionalExpansionMap ConditionalExpansions;