Commit 6d464dd1 authored by Stefan Behnel's avatar Stefan Behnel

Avoid C compiler warnings about unused variables in test.

parent 90684ac4
......@@ -9,10 +9,12 @@ cdef extern from *:
#include <utility>
const char* f(int& x) {
(void) x;
return "lvalue-ref";
}
const char* f(int&& x) {
(void) x;
return "rvalue-ref";
}
......
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