diff options
author | Ascathor <Break_the_Chain@web.de> | 2013-10-27 22:27:46 +0100 |
---|---|---|
committer | Ascathor <Break_the_Chain@web.de> | 2013-10-27 23:46:02 +0100 |
commit | 260773899052255447ed90be344efd38437bcdde (patch) | |
tree | ded631c07d1946649ce384201c1c7c92967bcf7f /src/server/shared/Threading/Threading.h | |
parent | e5553cfb78d8bdde4e9c6a2dbc98ff60bb8a273e (diff) |
Core/Code: Unify codestyle for brackets: {} to { }.
Also added missing copyright to some files.
Diffstat (limited to 'src/server/shared/Threading/Threading.h')
-rw-r--r-- | src/server/shared/Threading/Threading.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/shared/Threading/Threading.h b/src/server/shared/Threading/Threading.h index 3f2c121d666..00be82c6555 100644 --- a/src/server/shared/Threading/Threading.h +++ b/src/server/shared/Threading/Threading.h @@ -30,7 +30,7 @@ namespace ACE_Based class Runnable { public: - virtual ~Runnable() {} + virtual ~Runnable() { } virtual void run() = 0; void incReference() { ++m_refs; } @@ -100,7 +100,7 @@ namespace ACE_Based typedef ACE_TSS<Thread> ThreadStorage; //global object - container for Thread class representation of every thread static ThreadStorage m_ThreadStorage; - //use this object to determine current OS thread priority values mapped to enum Priority{} + //use this object to determine current OS thread priority values mapped to enum Priority{ } static ThreadPriority m_TpEnum; }; |