Skip to content

Commit ff4b081

Browse files
committed
fix warning
1 parent 9ab41a8 commit ff4b081

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

inc/finalmq/streamconnection/StreamConnectionContainer.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,12 @@ class SYMBOLEXP StreamConnectionContainer : public IStreamConnectionContainer
108108
std::unordered_map<std::int64_t, IStreamConnectionPrivatePtr> m_connectionId2Connection{};
109109
std::unordered_map<SOCKET, IStreamConnectionPrivatePtr> m_sd2Connection{};
110110
std::unordered_map<SOCKET, IStreamConnectionPrivatePtr> m_sd2ConnectionPollerLoop{};
111-
std::vector<SocketDescriptorPtr> m_socketErase;
111+
std::vector<SocketDescriptorPtr> m_socketErase{};
112112
std::atomic_flag m_connectionsStable{};
113113
static std::atomic_int64_t m_nextConnectionId;
114114
std::atomic_bool m_terminatePollerLoop{false};
115-
int m_cycleTime = 100;
116-
int m_checkReconnectInterval = 1000;
115+
int m_cycleTime{100};
116+
int m_checkReconnectInterval{1000};
117117
FuncPollerLoopTimer m_funcTimer{};
118118
const IExecutorPtr m_executorPollerThread;
119119
std::unique_ptr<IExecutorWorker> m_executorWorker{};

0 commit comments

Comments
 (0)