Remove DWORD from utility TLS headers

This commit is contained in:
notmatthewbeshay
2026-03-10 00:05:16 +11:00
parent e38e7c1fc0
commit 3880df481a
6 changed files with 10 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
#include "../Platform/stdafx.h"
#include "IntCache.h"
DWORD IntCache::tlsIdx = TlsAlloc();
unsigned int IntCache::tlsIdx = TlsAlloc();
void IntCache::CreateNewThreadStorage()
{
@@ -161,4 +161,4 @@ void IntCache::Reset()
delete [] tls->toosmall[i].data;
}
tls->toosmall.clear();
}
}