From 95efbcb5e1774f538f1f0514e1a488a3cece403e Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Tue, 16 Jun 2009 20:57:51 +0000 Subject: [PATCH] Accidentally broke this file. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73552 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/System/Win32/Mutex.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/System/Win32/Mutex.inc b/lib/System/Win32/Mutex.inc index 85cf0a7f9b5..7c1723be73f 100644 --- a/lib/System/Win32/Mutex.inc +++ b/lib/System/Win32/Mutex.inc @@ -22,7 +22,7 @@ namespace llvm { using namespace sys; -Mutex::Mutex() +Mutex::Mutex(bool /*recursive*/) { data_ = new CRITICAL_SECTION; InitializeCriticalSection((LPCRITICAL_SECTION)data_);