diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-12-09 14:58:53 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-12-09 14:58:53 -0800 |
commit | 0c92bed7ade20fe193dce0a481dad48e1be41622 (patch) | |
tree | 1f4d6531162e8ea98496583314497109c06fa2d4 /third_party/bigint | |
parent | e5d275f39ab7651077d31b3ae76b75391f397da0 (diff) | |
download | pdfium-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 .
Diffstat (limited to 'third_party/bigint')
-rw-r--r-- | third_party/bigint/BigIntegerUtils.hh | 2 |
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 |