Commit 740ba90e authored by Stefan Behnel's avatar Stefan Behnel

Try to fix a C++ test failure.

parent 01e00f6c
# mode: run
# tag: cpp
from libcpp cimport bool
......@@ -6,7 +7,7 @@ from libcpp.vector cimport vector
# XXX should use std::greater, but I don't know how to wrap that.
cdef inline bool greater(int x, int y):
cdef inline bool greater(const int &x, const int &y):
return x > 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