From: Robert Bradshaw Date: Fri, 17 Aug 2012 08:13:37 +0000 (-0700) Subject: Fix declaration in cpp_templates test. X-Git-Tag: 0.17b3~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b7be9d7407fd07825ce6c5633ad29f433f19dd36;p=platform%2Fupstream%2Fpython-cython.git Fix declaration in cpp_templates test. --- diff --git a/tests/run/cpp_templates.pyx b/tests/run/cpp_templates.pyx index 37d73d9..e710959 100644 --- a/tests/run/cpp_templates.pyx +++ b/tests/run/cpp_templates.pyx @@ -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):