Reviewers: Rico, Description: Fix X64 Windows compilation.
Please review this at http://codereview.chromium.org/6312120/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M test/cctest/test-fast-dtoa.cc Index: test/cctest/test-fast-dtoa.cc =================================================================== --- test/cctest/test-fast-dtoa.cc (revision 6617) +++ test/cctest/test-fast-dtoa.cc (working copy) @@ -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
