Accidentally broke this file.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73552 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Owen Anderson 2009-06-16 20:57:51 +00:00
parent 1cca27ebb6
commit 95efbcb5e1

View File

@ -22,7 +22,7 @@
namespace llvm {
using namespace sys;
Mutex::Mutex()
Mutex::Mutex(bool /*recursive*/)
{
data_ = new CRITICAL_SECTION;
InitializeCriticalSection((LPCRITICAL_SECTION)data_);