This commit is contained in:
2024-12-01 23:35:58 -05:00
parent fec709cc76
commit f9c21ebc04
13 changed files with 540 additions and 508 deletions

View File

@ -321,7 +321,7 @@ void deinit()
}
while ( left--, left );
destroy(StringCache);
destroy(& StringCache);
free( & CodePools);
free( & StringArenas);
@ -403,7 +403,7 @@ StringCached get_cached_string( StrC str )
}
String result = string_make( get_string_allocator( str.Len ), str );
set<StringCached>(StringCache, key, result );
set<StringCached>(& StringCache, key, result );
return result;
}