From 197a5c372101ce5e8774aec34ddd99a8c0949ebe Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 4 Mar 2020 07:44:02 -0800 Subject: [PATCH] Apply clang-format --- include/fmt/format-inl.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/fmt/format-inl.h b/include/fmt/format-inl.h index 0872fcbb..c42f7280 100644 --- a/include/fmt/format-inl.h +++ b/include/fmt/format-inl.h @@ -526,8 +526,7 @@ class bigint { FMT_ASSERT(compare(*this, other) >= 0, ""); bigit borrow = 0; int i = other.exp_ - exp_; - for (size_t j = 0, n = other.bigits_.size(); j != n; - ++i, ++j) { + for (size_t j = 0, n = other.bigits_.size(); j != n; ++i, ++j) { subtract_bigits(i, other.bigits_[j], borrow); } while (borrow > 0) subtract_bigits(i, 0, borrow);