mirror of
https://github.com/socketio/socket.io-client-cpp.git
synced 2026-06-10 20:36:14 +00:00
fix a initial value bug
This commit is contained in:
parent
24e8266870
commit
c39efcb914
@ -217,7 +217,10 @@ void set_##__FIELD__(__TYPE__ const& l) \
|
|||||||
m_error_listener = nullptr;
|
m_error_listener = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
socket::impl::impl(client_impl *client,std::string const& nsp):m_client(client),m_nsp(nsp)
|
socket::impl::impl(client_impl *client,std::string const& nsp):
|
||||||
|
m_client(client),
|
||||||
|
m_nsp(nsp),
|
||||||
|
m_connected(false)
|
||||||
{
|
{
|
||||||
NULL_GUARD(client);
|
NULL_GUARD(client);
|
||||||
if(m_client->opened())
|
if(m_client->opened())
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user