From: Lisandro Dalcin Date: Mon, 22 Dec 2008 20:12:35 +0000 (-0200) Subject: fix testcase to avoid GCC warning about unused function X-Git-Tag: 0.11-beta~86 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=c229a56f33afb2acad448fb29896d0ab87f51111;p=cython.git fix testcase to avoid GCC warning about unused function --- diff --git a/tests/compile/cnamespec.pyx b/tests/compile/cnamespec.pyx index fec88d39..66e420b8 100644 --- a/tests/compile/cnamespec.pyx +++ b/tests/compile/cnamespec.pyx @@ -15,3 +15,6 @@ cdef double spam "c_spam" (int i, float f): b = p.i p.i = x p.i = y + return 0.0 + +spam()