Cleanup: Add braces for clang tidy

This commit is contained in:
2020-07-07 11:10:42 -04:00
parent 0edf2fc128
commit 1e2ff4f81b

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;