Update atomic_uint nsdmi to eschew potentially deleted copy constructor

This commit is contained in:
Christian Mazakas
2023-03-20 12:43:57 -07:00
parent 3d34571654
commit d2b1f095c8
@@ -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;
};