Fixes windows build.
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Deukhoofd 2021-09-26 10:45:37 +02:00
parent 1e10d25dbd
commit 4841590c17
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 1 additions and 1 deletions

View File

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