This commit is contained in:
Wojtek Figat
2023-10-31 16:11:15 +01:00
2 changed files with 15 additions and 1 deletions

View File

@@ -511,7 +511,7 @@ public:
_locker = New<CriticalSection>();
ScopeLock lock(*_locker);
if (_functions == nullptr)
_functions = New<HashSet<FunctionType>>(32);
_functions = New<HashSet<FunctionType>>();
_functions->Add(f);
#endif
}