chore: make keyvaluepairscompiler use a zonestate

This commit is contained in:
Jan
2025-01-03 12:36:44 +01:00
parent 3c3161448f
commit ef862ff246
9 changed files with 166 additions and 84 deletions

View File

@ -2114,7 +2114,7 @@ namespace T6
struct KeyValuePairs
{
const char* name;
int numVariables;
unsigned int numVariables;
KeyValuePair* keyValuePairs;
};
@ -5569,8 +5569,8 @@ namespace T6
struct KeyValuePair
{
int keyHash;
int namespaceHash;
unsigned int keyHash;
unsigned int namespaceHash;
const char* value;
};