Cleanup: Add braces for clang tidy

This commit is contained in:
Hans Goudey 2020-07-07 11:10:42 -04:00
parent 0edf2fc128
commit 1e2ff4f81b
1 changed files with 2 additions and 1 deletions

View File

@ -91,8 +91,9 @@ std::string PersistentID::as_object_name_suffix() const
/* Find one past the last index. */
int index;
for (index = 0; index < array_length_ && persistent_id_[index] < INT_MAX; ++index)
for (index = 0; index < array_length_ && persistent_id_[index] < INT_MAX; ++index) {
;
}
/* Iterate backward to construct the string. */
--index;