mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-05 14:17:38 +00:00
* announcement: http://sourceforge.net/mailarchive/message.php?msg_id=31742684 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
16 lines
698 B
Diff
16 lines
698 B
Diff
Upstream-Status: Backport http://trac.webkit.org/changeset/160834
|
|
|
|
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
|
|
|
|
Index: a/Source/WTF/wtf/dtoa/double-conversion.cc
|
|
===================================================================
|
|
--- a/Source/WTF/wtf/dtoa/double-conversion.cc (revision 160833)
|
|
+++ b/Source/WTF/wtf/dtoa/double-conversion.cc (revision 160834)
|
|
@@ -447,5 +447,5 @@
|
|
const int kBufferSize = kMaxSignificantDigits + 10;
|
|
char buffer[kBufferSize]; // NOLINT: size is known at compile time.
|
|
- int buffer_pos = 0;
|
|
+ unsigned buffer_pos = 0;
|
|
|
|
// Exponent will be adjusted if insignificant digits of the integer part
|