Commit 05b6913d authored by Stefan Behnel's avatar Stefan Behnel

Avoid C compiler warning about unused variable in test.

parent 6d464dd1
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
cdef extern from *: cdef extern from *:
""" """
template <typename T> template <typename T>
void accept(T&& x) {} void accept(T&& x) { (void) x; }
""" """
cdef void accept[T](T&& x) cdef void accept[T](T&& x)
......
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