Commit b7be9d74 authored by Robert Bradshaw's avatar Robert Bradshaw

Fix declaration in cpp_templates test.

parent 16683040
...@@ -19,7 +19,7 @@ cdef extern from "cpp_templates_helper.h": ...@@ -19,7 +19,7 @@ cdef extern from "cpp_templates_helper.h":
cdef cppclass SuperClass[T1, T2]: cdef cppclass SuperClass[T1, T2]:
pass pass
cdef cppclass SubClass[T2, T3]: cdef cppclass SubClass[T2, T3](SuperClass[T2, T3]):
pass pass
def test_int(int x, int y): def test_int(int x, int y):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment