Index: test/cctest/test-dtoa.cc |
=================================================================== |
--- test/cctest/test-dtoa.cc (revision 6614) |
+++ test/cctest/test-dtoa.cc (working copy) |
@@ -44,7 +44,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; |