summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-12-09 14:58:53 -0800
committerTom Sepez <tsepez@chromium.org>2015-12-09 14:58:53 -0800
commit0c92bed7ade20fe193dce0a481dad48e1be41622 (patch)
tree1f4d6531162e8ea98496583314497109c06fa2d4
parente5d275f39ab7651077d31b3ae76b75391f397da0 (diff)
downloadpdfium-0c92bed7ade20fe193dce0a481dad48e1be41622.tar.xz
Remove static initializer from BigIntegerUtils.cc
which was being caused by including <iostream> instead of <ostream>. Since GN uses source_sets instead of static_libraries by default, the static initializer was making its way into Chrome, which was bad. R=tsepez@chromium.org BUG=559766 Review URL: https://codereview.chromium.org/1510353003 .
-rw-r--r--third_party/bigint/BigIntegerUtils.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/bigint/BigIntegerUtils.hh b/third_party/bigint/BigIntegerUtils.hh
index d2f81f48ab..999cdd260a 100644
--- a/third_party/bigint/BigIntegerUtils.hh
+++ b/third_party/bigint/BigIntegerUtils.hh
@@ -9,7 +9,7 @@
#include "BigInteger.hh"
#include <string>
-#include <iostream>
+#include <ostream>
/* This file provides:
* - Convenient std::string <-> BigUnsigned/BigInteger conversion routines