clang-format

This commit is contained in:
Erik Frojdh
2020-11-18 18:01:39 +01:00
parent 8565ac6cf2
commit 06dbf82e93
39 changed files with 57 additions and 59 deletions

View File

@ -53,9 +53,9 @@ int main() {
}
std::ofstream fs2("depreciated.csv");
fs2 << "Old, New\n";
fs2 << "Old, New\n";
auto cmds = proxy.GetDepreciatedCommands();
for (auto it : cmds){
for (auto it : cmds) {
fs2 << it.first << ", " << it.second << '\n';
}
}