Reviewers: Sven Panne,

Message:
Committed patchset #1 manually as r18848 (presubmit successful).

Description:
don't anger clang

[email protected]

BUG=

Committed: https://code.google.com/p/v8/source/detail?r=18848

Please review this at https://codereview.chromium.org/141433016/

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

Affected files (+2, -1 lines):
  M test/cctest/test-types.cc


Index: test/cctest/test-types.cc
diff --git a/test/cctest/test-types.cc b/test/cctest/test-types.cc
index 957c3d9e0ede15961441d6abec8ba8a4b53db6de..d29ee41100f6c3c57080479e4ae7330bbf04385e 100644
--- a/test/cctest/test-types.cc
+++ b/test/cctest/test-types.cc
@@ -811,7 +811,8 @@ struct Tests : Rep {
         Rep2::ToRegion(&zone, isolate), isolate);
     for (int i = 0; i < 100; ++i) {
       TypeHandle type = T.Fuzz();
-      CheckEqual(type, T.Convert<Type2>(T2.Convert<Type>(type)));
+      CheckEqual(type,
+ T.template Convert<Type2>(T2.template Convert<Type>(type)));
     }
   }
 };


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to