From 90c2db2a832f7f4559c01c9ed2153b7350b0bd2a Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Wed, 11 Mar 2015 15:53:24 +0000 Subject: [PATCH] Add missing namespace specifier for MSVC. llvm-svn: 231930 --- llvm/lib/Support/Windows/Signals.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Support/Windows/Signals.inc b/llvm/lib/Support/Windows/Signals.inc index 4f0848a..112e40e 100644 --- a/llvm/lib/Support/Windows/Signals.inc +++ b/llvm/lib/Support/Windows/Signals.inc @@ -412,7 +412,7 @@ void llvm::sys::PrintStackTrace(raw_ostream &OS) { } -void sys::SetInterruptFunction(void (*IF)()) { +void llvm::sys::SetInterruptFunction(void (*IF)()) { RegisterHandler(); InterruptFunction = IF; LeaveCriticalSection(&CriticalSection); -- 2.7.4