Browse Source

* BugFix: Correct a minor post-merge typo.

Robert MacGregor 3 years ago
parent
commit
4ef3f89280
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Engine/source/core/util/str.cpp

+ 1 - 1
Engine/source/core/util/str.cpp

@@ -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;
       }