1
0
mirror of synced 2025-07-25 01:22:03 +03:00

fix ssesvr use of deleted function (#938)

This commit is contained in:
Joseph Huang
2021-05-18 23:19:15 -04:00
committed by GitHub
parent 75fdb06696
commit dcf24d45a2

View File

@ -39,8 +39,8 @@ public:
private: private:
mutex m_; mutex m_;
condition_variable cv_; condition_variable cv_;
atomic_int id_ = 0; atomic_int id_{0};
atomic_int cid_ = -1; atomic_int cid_{-1};
string message_; string message_;
}; };