From 3931b802f1b8b890a615e5b2a4c0ed70407468d7 Mon Sep 17 00:00:00 2001 From: Paradox Date: Tue, 17 Feb 2009 20:10:49 -0600 Subject: Yet more tabs to spaces --HG-- branch : trunk --- dep/src/zthread/FastRecursiveMutex.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dep/src/zthread/FastRecursiveMutex.cxx') diff --git a/dep/src/zthread/FastRecursiveMutex.cxx b/dep/src/zthread/FastRecursiveMutex.cxx index 5ca677a654d..f84e207192f 100644 --- a/dep/src/zthread/FastRecursiveMutex.cxx +++ b/dep/src/zthread/FastRecursiveMutex.cxx @@ -25,10 +25,10 @@ namespace ZThread { - FastRecursiveMutex::FastRecursiveMutex() + FastRecursiveMutex::FastRecursiveMutex() : _lock(new FastRecursiveLock) { } - FastRecursiveMutex::~FastRecursiveMutex() + FastRecursiveMutex::~FastRecursiveMutex() { delete _lock; } @@ -39,7 +39,7 @@ namespace ZThread { } bool FastRecursiveMutex::tryAcquire(unsigned long timeout) { - + return _lock->tryAcquire(timeout); } -- cgit v1.2.3