Reviewers: fschneider,

Description:
Fix compile warning on 64 bit Windows.

Please review this at https://chromiumcodereview.appspot.com/9690019/

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
  M     test/cctest/test-parsing.cc


Index: test/cctest/test-parsing.cc
===================================================================
--- test/cctest/test-parsing.cc (revision 11007)
+++ test/cctest/test-parsing.cc (working copy)
@@ -361,7 +361,7 @@

   int first_function =
       static_cast<int>(strstr(program, "function") - program);
- int first_lbrace = first_function + static_cast<int>(strlen("function () "));
+  int first_lbrace = first_function + i::StrLength("function () ");
   CHECK_EQ('{', program[first_lbrace]);
   i::FunctionEntry entry1 = data->GetFunctionEntry(first_lbrace);
   CHECK(!entry1.is_valid());
@@ -369,7 +369,7 @@
   int second_function =
static_cast<int>(strstr(program + first_lbrace, "function") - program);
   int second_lbrace =
-      second_function + static_cast<int>(strlen("function () "));
+      second_function + i::StrLength("function () ");
   CHECK_EQ('{', program[second_lbrace]);
   i::FunctionEntry entry2 = data->GetFunctionEntry(second_lbrace);
   CHECK(entry2.is_valid());
@@ -752,7 +752,7 @@


 static int Utf8LengthHelper(const char* s) {
-  int len = strlen(s);
+  int len = i::StrLength(s);
   int character_length = len;
   for (int i = 0; i < len; i++) {
     unsigned char c = s[i];


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to