Commit 197a5c37 authored by Victor Zverovich's avatar Victor Zverovich

Apply clang-format

parent 68742e1d
...@@ -526,8 +526,7 @@ class bigint { ...@@ -526,8 +526,7 @@ class bigint {
FMT_ASSERT(compare(*this, other) >= 0, ""); FMT_ASSERT(compare(*this, other) >= 0, "");
bigit borrow = 0; bigit borrow = 0;
int i = other.exp_ - exp_; int i = other.exp_ - exp_;
for (size_t j = 0, n = other.bigits_.size(); j != n; for (size_t j = 0, n = other.bigits_.size(); j != n; ++i, ++j) {
++i, ++j) {
subtract_bigits(i, other.bigits_[j], borrow); subtract_bigits(i, other.bigits_[j], borrow);
} }
while (borrow > 0) subtract_bigits(i, 0, borrow); while (borrow > 0) subtract_bigits(i, 0, borrow);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment