From 1853458a391c5d4391bfdd6b8377a43ea6e6eef1 Mon Sep 17 00:00:00 2001 From: "whesse@chromium.org" Date: Thu, 3 Feb 2011 15:14:46 +0000 Subject: [PATCH] Fix X64 Windows compilation. Review URL: http://codereview.chromium.org/6312120 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6621 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- test/cctest/test-fast-dtoa.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cctest/test-fast-dtoa.cc b/test/cctest/test-fast-dtoa.cc index 30d2476..d311713 100644 --- a/test/cctest/test-fast-dtoa.cc +++ b/test/cctest/test-fast-dtoa.cc @@ -19,7 +19,7 @@ static const int kBufferSize = 100; // Removes trailing '0' digits. static void TrimRepresentation(Vector 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; -- 2.7.4