aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Threading/Threading.h
diff options
context:
space:
mode:
authorAokromes <jipr@hotmail.com>2013-10-28 09:57:48 -0700
committerAokromes <jipr@hotmail.com>2013-10-28 09:57:48 -0700
commit5cfd180247226f404584a8927d0a9908848ab8c9 (patch)
tree116a048c21606e3b4c3d5244c0756d6a46238dd9 /src/server/shared/Threading/Threading.h
parentcf72f7cc5cf13607dd7353b8d940d56679b6956b (diff)
parent7a7ad4a60ac2f0a082769551bb0b885a0f0d4962 (diff)
Merge pull request #11138 from Ascathor/master
Core/Code: Unify codestyle for brackets: {} to { }.
Diffstat (limited to 'src/server/shared/Threading/Threading.h')
-rw-r--r--src/server/shared/Threading/Threading.h4
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;
};