From ca6ef58b1ee8521e4b940ee4883dee714960e413 Mon Sep 17 00:00:00 2001 From: LogicParrot Date: Fri, 5 Feb 2016 23:45:45 +0200 Subject: Bulk clearing of whitespace --- src/OSSupport/CriticalSection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/OSSupport/CriticalSection.cpp') diff --git a/src/OSSupport/CriticalSection.cpp b/src/OSSupport/CriticalSection.cpp index 5248356c5..2e533676d 100644 --- a/src/OSSupport/CriticalSection.cpp +++ b/src/OSSupport/CriticalSection.cpp @@ -23,7 +23,7 @@ cCriticalSection::cCriticalSection() void cCriticalSection::Lock() { m_Mutex.lock(); - + #ifdef _DEBUG m_IsLocked += 1; m_OwningThreadID = std::this_thread::get_id(); @@ -40,7 +40,7 @@ void cCriticalSection::Unlock() ASSERT(m_IsLocked > 0); m_IsLocked -= 1; #endif // _DEBUG - + m_Mutex.unlock(); } -- cgit v1.2.3