From b7be9d7407fd07825ce6c5633ad29f433f19dd36 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Fri, 17 Aug 2012 01:13:37 -0700 Subject: [PATCH] Fix declaration in cpp_templates test. --- tests/run/cpp_templates.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.7.4