Revision: 6613
Author: [email protected]
Date: Thu Feb  3 03:13:04 2011
Log: Fix X64 compilation on Windows.
Review URL: http://codereview.chromium.org/6334086
http://code.google.com/p/v8/source/detail?r=6613

Modified:
 /branches/bleeding_edge/test/cctest/test-bignum-dtoa.cc

=======================================
--- /branches/bleeding_edge/test/cctest/test-bignum-dtoa.cc Tue Dec 7 03:01:02 2010 +++ /branches/bleeding_edge/test/cctest/test-bignum-dtoa.cc Thu Feb 3 03:13:04 2011
@@ -1,4 +1,4 @@
-// Copyright 2010 the V8 project authors. All rights reserved.
+// Copyright 2011 the V8 project authors. All rights reserved.
 // Redistribution and use in source and binary forms, with or without
 // modification, are permitted provided that the following conditions are
 // met:
@@ -44,7 +44,7 @@
 // Removes trailing '0' digits.
 // Can return the empty string if all digits are 0.
 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

Reply via email to