feat(Core/Sockets): replace ACE_ASSERT to default core ASSERT (#4950)

This commit is contained in:
Kargatum
2021-03-25 09:09:13 +07:00
committed by GitHub
parent fb5d2fa2e5
commit 10fa49f5bd
3 changed files with 18 additions and 19 deletions

View File

@@ -10,8 +10,8 @@
#include "AccountMgr.h"
#include "Common.h"
#include "Configuration/Config.h"
#include "Database/DatabaseEnv.h"
#include "Config.h"
#include "DatabaseEnv.h"
#include "Duration.h"
#include "Log.h"
#include "RASocket.h"
@@ -85,7 +85,7 @@ int RASocket::recv_line(ACE_Message_Block& buffer)
return -1;
}
ACE_ASSERT(n == sizeof(byte));
ASSERT(n == sizeof(byte));
if (byte == '\n')
break;