Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(711)

Unified Diff: third_party/double-conversion/src/bignum.cc

Issue 2019983002: Roll third_party/double_conversion (Closed) Base URL: git@github.com:dartino/sdk.git@master
Patch Set: Minor update Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/double-conversion/src/bignum.h ('k') | third_party/double-conversion/src/cached-powers.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/double-conversion/src/bignum.cc
diff --git a/third_party/double-conversion/src/bignum.cc b/third_party/double-conversion/src/bignum.cc
index 2743d67e8d922aaab3283a586dcd7c97ad7a78a9..8892de8f2a3a70102aa8f5b724db8f664992ee28 100644
--- a/third_party/double-conversion/src/bignum.cc
+++ b/third_party/double-conversion/src/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);
« no previous file with comments | « third_party/double-conversion/src/bignum.h ('k') | third_party/double-conversion/src/cached-powers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698