aboutsummaryrefslogtreecommitdiff
path: root/src/shared/LockedQueue.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/LockedQueue.h')
-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();
}