clang format fix

This commit is contained in:
georgemoralis 2024-03-26 12:33:00 +02:00
parent 596831947e
commit 354a9c3cdb
1 changed files with 4 additions and 3 deletions

View File

@ -45,9 +45,10 @@ void SymbolsResolver::DebugDump(const std::filesystem::path& file_name) {
} else { } else {
nidName = "UNK"; nidName = "UNK";
} }
f.WriteString(fmt::format("0x{:<20x} {:<16} {:<60} {:<30} {:<2} {:<30} {:<2} {:<2} {:<10}\n", f.WriteString(
symbol.virtual_address, ids.at(0), nidName, ids.at(1), ids.at(2), fmt::format("0x{:<20x} {:<16} {:<60} {:<30} {:<2} {:<30} {:<2} {:<2} {:<10}\n",
ids.at(3), ids.at(4), ids.at(5), ids.at(6))); symbol.virtual_address, ids.at(0), nidName, ids.at(1), ids.at(2), ids.at(3),
ids.at(4), ids.at(5), ids.at(6)));
} }
} }