mirror of
https://github.com/mangosfour/server.git
synced 2025-12-27 10:37:02 +00:00
[10509] Fix some "foo initialized after bar" gcc warnings and remove some unused variables.
This commit is contained in:
parent
8ccf9c7464
commit
47397ff19b
10 changed files with 28 additions and 35 deletions
|
|
@ -54,9 +54,9 @@ class ReactorRunnable : protected ACE_Task_Base
|
|||
public:
|
||||
|
||||
ReactorRunnable () :
|
||||
m_ThreadId (-1),
|
||||
m_Reactor (0),
|
||||
m_Connections (0),
|
||||
m_Reactor (0)
|
||||
m_ThreadId (-1)
|
||||
{
|
||||
ACE_Reactor_Impl* imp = 0;
|
||||
|
||||
|
|
@ -207,8 +207,8 @@ class ReactorRunnable : protected ACE_Task_Base
|
|||
};
|
||||
|
||||
WorldSocketMgr::WorldSocketMgr () :
|
||||
m_NetThreadsCount (0),
|
||||
m_NetThreads (0),
|
||||
m_NetThreadsCount (0),
|
||||
m_SockOutKBuff (-1),
|
||||
m_SockOutUBuff (65536),
|
||||
m_UseNoDelay (true),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue