Reset the string builder rather than overwrite it

This commit is contained in:
Michał Janiszewski 2017-08-02 23:54:49 +02:00
parent ede8054726
commit c956ccc4d4
1 changed files with 2 additions and 2 deletions

View File

@ -170,8 +170,8 @@ public:
// Clean up the parsing work data
Memory::Free(_currentGroup);
// Destruct the string builder to free memory
_stringDataSB = StringBuilder();
// Reset the string builder to free memory
_stringDataSB.Reset();
_currentGroup = nullptr;
_currentObjectOverride = nullptr;
_currentScenarioOverride = nullptr;