From 43fa15b4511af35743049110a6f3227be7ba6220 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Tue, 22 Sep 2009 16:10:35 +0000 Subject: [PATCH] ... missed hiding a variable for MSVC only. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82552 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/System/Win32/Signals.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/System/Win32/Signals.inc b/lib/System/Win32/Signals.inc index ca43bbf5972..dba22185ac7 100644 --- a/lib/System/Win32/Signals.inc +++ b/lib/System/Win32/Signals.inc @@ -43,7 +43,9 @@ static std::vector *FilesToRemove = NULL; static std::vector > *CallBacksToRun = 0; static bool RegisteredUnhandledExceptionFilter = false; static bool CleanupExecuted = false; +#ifdef _MSC_VER static bool ExitOnUnhandledExceptions = false; +#endif static PTOP_LEVEL_EXCEPTION_FILTER OldFilter = NULL; // Windows creates a new thread to execute the console handler when an event -- 2.34.1