mirror of
https://github.com/mangosfour/server.git
synced 2025-12-27 19:37:04 +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();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "8066"
|
||||
#define REVISION_NR "8067"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue