summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/double-conversion/bignum.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/double-conversion/bignum.cc')
-rw-r--r--src/3rdparty/double-conversion/bignum.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/double-conversion/bignum.cc b/src/3rdparty/double-conversion/bignum.cc
index 2743d67e8d..8892de8f2a 100644
--- a/src/3rdparty/double-conversion/bignum.cc
+++ b/src/3rdparty/double-conversion/bignum.cc
@@ -104,7 +104,7 @@ void Bignum::AssignDecimalString(Vector<const char> value) {
const int kMaxUint64DecimalDigits = 19;
Zero();
int length = value.length();
- int pos = 0;
+ unsigned int pos = 0;
// Let's just say that each digit needs 4 bits.
while (length >= kMaxUint64DecimalDigits) {
uint64_t digits = ReadUInt64(value, pos, kMaxUint64DecimalDigits);