Fix compile

This assert was accidentally left in to catch any invalid calling of CNetAdr::ToString
This commit is contained in:
rexx 2023-05-01 15:15:06 +01:00
parent 2de9df0f1a
commit f90bba9d85

View File

@ -111,7 +111,7 @@ bool CNetAdr::ComparePort(const CNetAdr& other) const
const char* CNetAdr::ToString(bool bOnlyBase) const
{
// Main thread only due to use of static buffers.
Assert(ThreadInMainThread());
//Assert(ThreadInMainThread());
// Select a static buffer.
static char s[4][128];