summaryrefslogtreecommitdiff
path: root/third_party/bigint
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-12-09 14:55:41 -0800
committerTom Sepez <tsepez@chromium.org>2015-12-09 14:55:41 -0800
commit465ed873abc829e9dda39f30c8679d2d18721f62 (patch)
tree1d6887fa4c350810a06a06b4b0df2513f42e20cf /third_party/bigint
parent35e68a5275f2d1e6819c773f0f367e225a0d5961 (diff)
downloadpdfium-465ed873abc829e9dda39f30c8679d2d18721f62.tar.xz
XFA: Fix win8 gn build under chromium checkout (non-xfa)
The no nominmax config was lost when moving from master. Fix a few other small differences along the way, and fully conditionalize the build of tiff. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1514633002 .
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;