Fix declaration in cpp_templates test.
authorRobert Bradshaw <robertwb@gmail.com>
Fri, 17 Aug 2012 08:13:37 +0000 (01:13 -0700)
committerRobert Bradshaw <robertwb@gmail.com>
Fri, 17 Aug 2012 08:13:48 +0000 (01:13 -0700)
tests/run/cpp_templates.pyx

index 37d73d9..e710959 100644 (file)
@@ -19,7 +19,7 @@ cdef extern from "cpp_templates_helper.h":
     cdef cppclass SuperClass[T1, T2]:
         pass
 
-    cdef cppclass SubClass[T2, T3]:
+    cdef cppclass SubClass[T2, T3](SuperClass[T2, T3]):
         pass
 
 def test_int(int x, int y):