mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-15 10:00:28 +00:00
refactor(Core): replace ACE atomic types with standard C++ (#3421)
* Update AuctionHouseHandler.cpp * refactor(atomic-type): replace ACE atomic types Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Co-authored-by: Kargatum <dowlandtop@yandex.com>
This commit is contained in:
@@ -24,6 +24,7 @@
|
||||
#include <ace/os_include/sys/os_types.h>
|
||||
#include <ace/os_include/sys/os_socket.h>
|
||||
|
||||
#include <atomic>
|
||||
#include <set>
|
||||
|
||||
#include "Log.h"
|
||||
@@ -92,7 +93,7 @@ class ReactorRunnable : protected ACE_Task_Base
|
||||
|
||||
long Connections()
|
||||
{
|
||||
return static_cast<long> (m_Connections);
|
||||
return m_Connections;
|
||||
}
|
||||
|
||||
int AddSocket (WorldSocket* sock)
|
||||
|
||||
Reference in New Issue
Block a user