diff --git a/src/common/RefCounted.h b/src/common/RefCounted.h index 90144a6043..b8e2ce8f82 100644 --- a/src/common/RefCounted.h +++ b/src/common/RefCounted.h @@ -35,7 +35,7 @@ class RefCounted { virtual void DeleteThis(); private: - std::atomic_uint64_t mRefCount; + std::atomic mRefCount; }; template