Apply style fix pt5

This commit is contained in:
Antz 2020-01-14 13:12:16 +00:00
parent 4727d8846f
commit 1a1110b4f7
67 changed files with 648 additions and 214 deletions

View file

@ -90,7 +90,9 @@ void SQLStorageBase::Free()
case DBC_FF_STRING:
{
for (uint32 recordItr = 0; recordItr < m_recordCount; ++recordItr)
{ delete[] *(char**)((char*)(m_data + (recordItr * m_recordSize)) + offset); }
{
delete[] *(char**)((char*)(m_data + (recordItr * m_recordSize)) + offset);
}
offset += sizeof(char*);
break;