From aed03e43c905e5e6d25c5a4960d37c105fd78d65 Mon Sep 17 00:00:00 2001 From: Hans Wennborg Date: Mon, 11 Aug 2014 16:15:57 +0000 Subject: [PATCH] Increase the size of ToolChain::FilePaths 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/clang/Driver/ToolChain.h b/include/clang/Driver/ToolChain.h index 6f5677cc16..38f5bc6e33 100644 --- a/include/clang/Driver/ToolChain.h +++ b/include/clang/Driver/ToolChain.h @@ -41,7 +41,7 @@ namespace driver { /// ToolChain - Access to tools for a single platform. class ToolChain { public: - typedef SmallVector path_list; + typedef SmallVector path_list; enum CXXStdlibType { CST_Libcxx, -- 2.40.0