diff options
author | click <none@none> | 2010-08-08 19:45:53 +0200 |
---|---|---|
committer | click <none@none> | 2010-08-08 19:45:53 +0200 |
commit | 1f80c7b3c056a791a7f0be52a6e188292d268b82 (patch) | |
tree | 7a098100fe06b3bffa4869aad2f3dd8225590485 /src/server/shared/Threading/LockedQueue.h | |
parent | 31160bcfce97dc403627f986ca343de6496c8ea8 (diff) |
Sourcefile sleanups -> tabs to spaces, remove whitespace - also update the cleanupscripts very slightly
--HG--
branch : trunk
Diffstat (limited to 'src/server/shared/Threading/LockedQueue.h')
-rw-r--r-- | src/server/shared/Threading/LockedQueue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/shared/Threading/LockedQueue.h b/src/server/shared/Threading/LockedQueue.h index ff6056350f3..16889d792be 100644 --- a/src/server/shared/Threading/LockedQueue.h +++ b/src/server/shared/Threading/LockedQueue.h @@ -120,14 +120,14 @@ namespace ACE_Based { this->_lock.release(); } - + ///! Calls pop_front of the queue void pop_front() { ACE_GUARD (LockType, g, this->_lock); _queue.pop_front(); } - + ///! Checks if we're empty or not with locks held bool empty() { |