aboutsummaryrefslogtreecommitdiffstats
path: root/lib/System
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-06-16 20:57:51 +0000
committerOwen Anderson <resistor@mac.com>2009-06-16 20:57:51 +0000
commit4c4a202ee76fbaa1f864d7b91220bdcb41fe6c0a (patch)
treee34cc767eced5fe464d43e7617e2ac7d2132d216 /lib/System
parentc93a0231d137576ebc12c107f1da4251ef1c101a (diff)
downloadexternal_llvm-4c4a202ee76fbaa1f864d7b91220bdcb41fe6c0a.zip
external_llvm-4c4a202ee76fbaa1f864d7b91220bdcb41fe6c0a.tar.gz
external_llvm-4c4a202ee76fbaa1f864d7b91220bdcb41fe6c0a.tar.bz2
Accidentally broke this file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73552 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System')
-rw-r--r--lib/System/Win32/Mutex.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/Win32/Mutex.inc b/lib/System/Win32/Mutex.inc
index 85cf0a7..7c1723b 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_);