Include clang-format change

This commit is contained in:
Michael Stack 2023-01-28 00:41:55 +00:00
parent 2770767255
commit f5ede397d3
1 changed files with 1 additions and 2 deletions

View File

@ -60,8 +60,7 @@ struct AuditStorageState {
std::string toString() const {
std::string res = "AuditStorageState: [ID]: " + id.toString() +
", [Range]: " + Traceable<KeyRangeRef>::toString(range) +
", [Type]: " + std::to_string(type) +
", [Phase]: " + std::to_string(phase);
", [Type]: " + std::to_string(type) + ", [Phase]: " + std::to_string(phase);
if (!error.empty()) {
res += "[Error]: " + error;
}