Skip to content

Commit

Permalink
Restyle
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilitvin committed Jun 30, 2023
1 parent 3685791 commit e84e25f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/support/StringBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ StringBuilderBase & StringBuilderBase::AddFormat(const char * format, ...)
if (mWriter.Available() > 0)
{
output = reinterpret_cast<char *>(mWriter.Buffer() + mWriter.Needed());
} else {
}
else
{
output = reinterpret_cast<char *>(mWriter.Buffer() + mWriter.Size());
}

Expand Down

0 comments on commit e84e25f

Please sign in to comment.