Fixed POSIX build.

This commit is contained in:
martin-osborne 2015-01-14 11:04:23 +00:00
parent 00b568193c
commit 96c859eaaa
2 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ bool MutexImpl::tryLockImpl(long milliseconds)
}
FastMutexImpl::FastMutexImpl(): MutexImpl(false)
FastMutexImpl::FastMutexImpl(): MutexImpl(MUTEX_NONRECURSIVE_IMPL)
{
}

View File

@ -50,7 +50,7 @@ bool MutexImpl::tryLockImpl(long milliseconds)
}
FastMutexImpl::FastMutexImpl(): MutexImpl(false)
FastMutexImpl::FastMutexImpl(): MutexImpl(MUTEX_NONRECURSIVE_IMPL)
{
}