Fixes windows build.
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-09-26 10:45:37 +02:00
parent 1e10d25dbd
commit 4841590c17

View File

@@ -7,7 +7,7 @@
template <typename T> class NativeArray { template <typename T> class NativeArray {
private: private:
const T* _array; const T* _array;
std::atomic<ulong> _refCount; std::atomic<u64> _refCount;
void AddRef() { void AddRef() {
_refCount++; _refCount++;