fix: missing #ifndef for release build

Dieser Commit ist enthalten in:
Reinder Feenstra 2025-01-03 00:13:25 +01:00
Ursprung 9739910b9f
Commit 5d1968b865

Datei anzeigen

@ -85,10 +85,12 @@ void WebSocketConnection::disconnect()
});
}
#ifndef NDEBUG
bool WebSocketConnection::isServerThread() const
{
return std::this_thread::get_id() == m_server.threadId();
}
#endif
boost::asio::io_context& WebSocketConnection::ioContext()
{