summaryrefslogtreecommitdiff
path: root/third_party/bigint
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/bigint')
-rw-r--r--third_party/bigint/BigIntegerUtils.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/third_party/bigint/BigIntegerUtils.cc b/third_party/bigint/BigIntegerUtils.cc
index 2629028355..f48334d961 100644
--- a/third_party/bigint/BigIntegerUtils.cc
+++ b/third_party/bigint/BigIntegerUtils.cc
@@ -43,6 +43,7 @@ std::ostream &operator <<(std::ostream &os, const BigUnsigned &x) {
os << '0';
} else
abort();
+
std::string s = std::string(BigUnsignedInABase(x, base));
os << s;
return os;