1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Lock counter also must be initialized early.

This commit is contained in:
Bartosz Taudul
2017-10-24 22:02:49 +02:00
parent 8f814b2537
commit 03289175ab
2 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
namespace tracy
{
static std::atomic<uint32_t> s_lockCounter( 0 );
extern std::atomic<uint32_t> s_lockCounter;
template<class T>
class Lockable