From: Richard Smith Date: Wed, 17 Aug 2016 02:22:39 +0000 (+0000) Subject: Add missing close brace to fix Windows bots. Oops :( X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab9f5a9e51b077a9a25bc0528e237fffa427dcf9;p=clang Add missing close brace to fix Windows bots. Oops :( git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@278891 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/driver/cc1_main.cpp b/tools/driver/cc1_main.cpp index b8b6ebe03d..b44108e8ad 100644 --- a/tools/driver/cc1_main.cpp +++ b/tools/driver/cc1_main.cpp @@ -124,7 +124,7 @@ static void ensureSufficientStack() { ensureStackAddressSpace(); } #else -static void ensureSufficientStack() { +static void ensureSufficientStack() {} #endif int cc1_main(ArrayRef Argv, const char *Argv0, void *MainAddr) {