* BugFix: Correct a minor post-merge typo.

This commit is contained in:
Robert MacGregor 2022-06-09 23:10:13 -04:00
parent 1e9aa8b86f
commit 4ef3f89280

View file

@ -287,7 +287,7 @@ class String::StringData : protected StringDataImpl
static StringData* Create(const StringChar* data, U32 len, bool interned = false)
{
void* memory = dMalloc(sizeof(StringData) + sizeof(StringChar) * len)
void* memory = dMalloc(sizeof(StringData) + sizeof(StringChar) * len);
StringData* result = new(memory) StringData(data, len, interned);
return result;
}