2015-11-19 20:17:35 +00:00
|
|
|
#include "tools.h"
|
2016-03-01 20:57:05 +00:00
|
|
|
#include <format.h>
|
|
|
|
#include <chrono>
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
using std::chrono::duration;
|
|
|
|
|
|
|
|
string formatDuration(duration<double> seconds) {
|
|
|
|
return fmt::format("{0:.2f}", seconds.count());
|
|
|
|
}
|