[8067] Fixed tabs and trailing whitespaces in code.

This commit is contained in:
VladimirMangos 2009-06-22 15:42:55 +04:00
parent c402d3ec26
commit 634fda8475
5 changed files with 8 additions and 8 deletions

View file

@ -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();
}