Skip to content

Commit b0c5d25

Browse files
committed
Fix CClient::~CClient issue in builds without _EXCEPTIONS_DEBUG
1 parent ecd546a commit b0c5d25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/game/clients/CClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ CClient::~CClient() noexcept
9494
HistoryIP& history = g_NetworkManager.getIPHistoryManager().getHistoryForIP(GetPeer());
9595
if ( GetConnectType() != CONNECT_GAME )
9696
{
97-
EXC_TRYSUB("m_iPendingConnectionRequests")
97+
EXC_TRYSUB("m_iPendingConnectionRequests");
9898

9999
ASSERT(history.m_iPendingConnectionRequests > 0);
100100
-- history.m_iPendingConnectionRequests;

0 commit comments

Comments
 (0)