Skip to content

Commit 9a826aa

Browse files
authored
Fix formatting
1 parent 087210e commit 9a826aa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

include/util/json_renderer.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ template <typename Out> struct Renderer
5555
// case) and then grows using heap if needed
5656
fmt::memory_buffer buffer;
5757
if (static_cast<std::uint64_t>(number.value) == number.value)
58-
fmt::format_to(std::back_inserter(buffer), FMT_COMPILE("{}"), static_cast<std::uint64_t>(number.value));
58+
fmt::format_to(std::back_inserter(buffer),
59+
FMT_COMPILE("{}"),
60+
static_cast<std::uint64_t>(number.value));
5961
else
6062
fmt::format_to(std::back_inserter(buffer), FMT_COMPILE("{:.10g}"), number.value);
6163

0 commit comments

Comments
 (0)