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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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