aboutsummaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
authormegamage <none@none>2009-06-27 17:10:17 -0500
committermegamage <none@none>2009-06-27 17:10:17 -0500
commite4cfd6318105b1e5cbe93ac2accd5267039430c0 (patch)
tree4213c7e7369ca088644a6826976285ec12e8ee02 /src/shared
parentc688528f72682cfafe5dff5f11cfdcc4278525d6 (diff)
[8067] Fixed tabs and trailing whitespaces in code. Author: VladimirMangos
--HG-- branch : trunk
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/LockedQueue.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shared/LockedQueue.h b/src/shared/LockedQueue.h
index b085dd09b83..5109b171677 100644
--- a/src/shared/LockedQueue.h
+++ b/src/shared/LockedQueue.h
@@ -58,7 +58,7 @@ namespace ACE_Based
ACE_Guard<LockType> g(_lock);
ASSERT(!_canceled);
- // throw Cancellation_Exception();
+ // throw Cancellation_Exception();
_queue.push_back(item);
@@ -73,7 +73,7 @@ namespace ACE_Based
ACE_Guard<LockType> g(_lock);
ASSERT (!_queue.empty() || !_canceled);
- // throw Cancellation_Exception();
+ // throw Cancellation_Exception();
T item = _queue.front();
_queue.pop_front();
@@ -87,7 +87,7 @@ namespace ACE_Based
ACE_Guard<LockType> g(_lock);
ASSERT (!_queue.empty());
- // throw NoSuchElement_Exception();
+ // throw NoSuchElement_Exception();
return _queue.front();
}