Repository: couchdb-jiffy Updated Branches: refs/heads/master ea19c417f -> d3c00e19d
Fix compiler warning on gcc 5.1.0 Project: http://git-wip-us.apache.org/repos/asf/couchdb-jiffy/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-jiffy/commit/e008c0c3 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-jiffy/tree/e008c0c3 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-jiffy/diff/e008c0c3 Branch: refs/heads/master Commit: e008c0c3fffb4f509c5ae6b73b960663d778f231 Parents: f661ee9 Author: Paul J. Davis <[email protected]> Authored: Sat Jul 25 12:47:52 2015 -0500 Committer: Paul J. Davis <[email protected]> Committed: Sat Jul 25 12:47:52 2015 -0500 ---------------------------------------------------------------------- c_src/double-conversion/bignum.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-jiffy/blob/e008c0c3/c_src/double-conversion/bignum.cc ---------------------------------------------------------------------- diff --git a/c_src/double-conversion/bignum.cc b/c_src/double-conversion/bignum.cc index 89c0ab2..7c88ff7 100644 --- a/c_src/double-conversion/bignum.cc +++ b/c_src/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);
