Skip to content
This repository was archived by the owner on Apr 6, 2019. It is now read-only.

Commit ed1878d

Browse files
committed
bump tacopie (MSVC compilation issue with conflicting filenames)
1 parent c21dab5 commit ed1878d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

sources/core/subscriber.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ namespace cpp_redis {
2828

2929
#ifndef __CPP_REDIS_USE_CUSTOM_TCP_CLIENT
3030
subscriber::subscriber(void)
31-
: m_auth_reply_callback(nullptr)
32-
, m_reconnecting(false)
33-
, m_cancel(false) {
31+
: m_reconnecting(false)
32+
, m_cancel(false)
33+
, m_auth_reply_callback(nullptr) {
3434
__CPP_REDIS_LOG(debug, "cpp_redis::subscriber created");
3535
}
3636
#endif /* __CPP_REDIS_USE_CUSTOM_TCP_CLIENT */
3737

3838
subscriber::subscriber(const std::shared_ptr<network::tcp_client_iface>& tcp_client)
3939
: m_client(tcp_client)
40-
, m_auth_reply_callback(nullptr)
4140
, m_reconnecting(false)
42-
, m_cancel(false) {
41+
, m_cancel(false)
42+
, m_auth_reply_callback(nullptr) {
4343
__CPP_REDIS_LOG(debug, "cpp_redis::subscriber created");
4444
}
4545

tacopie

Submodule tacopie updated 57 files

0 commit comments

Comments
 (0)