mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-24 12:14:26 +00:00
Apply clang-format
This commit is contained in:
parent
68742e1d87
commit
197a5c3721
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user