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

@ -61,7 +61,9 @@ bool QueryResultMysql::NextRow()
}
for (uint32 i = 0; i < mFieldCount; ++i)
{ mCurrentRow[i].SetValue(row[i]); }
{
mCurrentRow[i].SetValue(row[i]);
}
return true;
}