Reviewers: Michael Starzinger,

Description:
Prefix usage of kExternalFloatArray and kExternalDoubleArray with v8.

[email protected]


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

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

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


Index: test/cctest/test-api.cc
diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc
index 52522e625b17196cc73d18c588817135dec73130..f842bc4d8899de3059f0e63e3519e1994fe30da6 100644
--- a/test/cctest/test-api.cc
+++ b/test/cctest/test-api.cc
@@ -12902,8 +12902,8 @@ static void ExternalArrayTestHelper(v8::ExternalArrayType array_type,
                       "}"
                       "ext_array[7];");
   CHECK_EQ(0, result->Int32Value());
-  if (array_type == kExternalDoubleArray ||
-      array_type == kExternalFloatArray) {
+  if (array_type == v8::kExternalDoubleArray ||
+      array_type == v8::kExternalFloatArray) {
     CHECK_EQ(
         static_cast<int>(0x80000000),
static_cast<int>(jsobj->GetElement(7)->ToObjectChecked()->Number()));


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

Reply via email to