Revision: 6621
Author: [email protected]
Date: Thu Feb 3 07:14:46 2011
Log: Fix X64 Windows compilation.
Review URL: http://codereview.chromium.org/6312120
http://code.google.com/p/v8/source/detail?r=6621
Modified:
/branches/bleeding_edge/test/cctest/test-fast-dtoa.cc
=======================================
--- /branches/bleeding_edge/test/cctest/test-fast-dtoa.cc Tue Dec 7
03:01:02 2010
+++ /branches/bleeding_edge/test/cctest/test-fast-dtoa.cc Thu Feb 3
07:14:46 2011
@@ -19,7 +19,7 @@
// Removes trailing '0' digits.
static void TrimRepresentation(Vector<char> representation) {
- int len = strlen(representation.start());
+ int len = StrLength(representation.start());
int i;
for (i = len - 1; i >= 0; --i) {
if (representation[i] != '0') break;
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev