Update atomic_uint nsdmi to eschew potentially deleted copy constructor

This commit is contained in:
Christian Mazakas
2023-03-17 13:51:37 -07:00
parent 3d34571654
commit d2b1f095c8

View File

@ -823,7 +823,7 @@ private:
#endif
/* TODO: thread_counter should be static */
mutable std::atomic_uint thread_counter=0;
mutable std::atomic_uint thread_counter{0};
mutable multimutex_type mutexes;
};