Skip to content

Commit d2e3edb

Browse files
committed
#2256: timing: add more significant figures
1 parent 26f702c commit d2e3edb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vt/timing/timing.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ struct formatter<::vt::TimeTypeWrapper> {
7575
auto format(::vt::TimeTypeWrapper const& t, FormatContext& ctx) {
7676
return fmt::format_to(
7777
ctx.out(), "{}",
78-
to_engineering_string(t.seconds(), 3, eng_exponential, "s")
78+
to_engineering_string(t.seconds(), 5, eng_exponential, "s")
7979
);
8080
}
8181
};

0 commit comments

Comments
 (0)