From 51d13724c3b2a2347bd33fb36363da8a43e86406 Mon Sep 17 00:00:00 2001 From: Pavel Novikov Date: Tue, 19 Oct 2021 14:16:29 +0300 Subject: [PATCH] clang format --- include/fmt/format.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 558f23f5..8bea74a4 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -42,7 +42,7 @@ #include // std::swap #ifdef __cpp_lib_bit_cast -#include // std::bitcast +# include // std::bitcast #endif #include "core.h" @@ -1720,7 +1720,7 @@ inline auto write_significand(Char* out, UInt significand, int significand_size, out += significand_size + 1; Char* end = out; int floating_size = significand_size - integral_size; - for(int i = floating_size / 2; i > 0; --i) { + for (int i = floating_size / 2; i > 0; --i) { out -= 2; copy2(out, digits2(significand % 100)); significand /= 100;