mirror of
https://github.com/mangosfour/server.git
synced 2025-12-18 10:37:01 +00:00
[8067] Fixed tabs and trailing whitespaces in code.
This commit is contained in:
parent
c402d3ec26
commit
634fda8475
5 changed files with 8 additions and 8 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue