]> granicus.if.org Git - clang/commitdiff
Increase the size of ToolChain::FilePaths
authorHans Wennborg <hans@hanshq.net>
Mon, 11 Aug 2014 16:15:57 +0000 (16:15 +0000)
committerHans Wennborg <hans@hanshq.net>
Mon, 11 Aug 2014 16:15:57 +0000 (16:15 +0000)
In a Clang bootstrap build, the size was always at least 9.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@215362 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Driver/ToolChain.h

index 6f5677cc165b95e872446c6f51a42fdf3203f28d..38f5bc6e33c327206c78f9fd59c54eb170132217 100644 (file)
@@ -41,7 +41,7 @@ namespace driver {
 /// ToolChain - Access to tools for a single platform.
 class ToolChain {
 public:
-  typedef SmallVector<std::string, 4> path_list;
+  typedef SmallVector<std::string, 16> path_list;
 
   enum CXXStdlibType {
     CST_Libcxx,