clang format

This commit is contained in:
gabime
2018-07-08 16:26:25 +03:00
parent 1fd166d417
commit 81f3cc5575
10 changed files with 6734 additions and 5460 deletions

View File

@@ -339,9 +339,9 @@ public:
dest.push_back('+');
}
fmt_helper::pad2(total_minutes / 60, dest); //hours
fmt_helper::pad2(total_minutes / 60, dest); // hours
dest.push_back(':');
fmt_helper::pad2(total_minutes % 60, dest); //minutes
fmt_helper::pad2(total_minutes % 60, dest); // minutes
}
private: