[Numpy-svn] r6537 - trunk/numpy/core/src

numpy-svn at scipy.org numpy-svn at scipy.org
Tue Mar 3 04:29:05 EST 2009


Author: cdavid
Date: 2009-03-03 03:29:00 -0600 (Tue, 03 Mar 2009)
New Revision: 6537

Modified:
   trunk/numpy/core/src/umath_loops.inc.src
Log:
Mark unused fptr as unused to avoid spurious warnings flags.

Modified: trunk/numpy/core/src/umath_loops.inc.src
===================================================================
--- trunk/numpy/core/src/umath_loops.inc.src	2009-03-03 04:59:18 UTC (rev 6536)
+++ trunk/numpy/core/src/umath_loops.inc.src	2009-03-03 09:29:00 UTC (rev 6537)
@@ -893,7 +893,7 @@
  * #OP =  >=, <=#
  **/
 static void
- at TYPE@_ at kind@(char **args, intp *dimensions, intp *steps, void *func)
+ at TYPE@_ at kind@(char **args, intp *dimensions, intp *steps, void *NPY_UNUSED(func))
 {
     /*  */
     BINARY_LOOP {
@@ -1289,7 +1289,7 @@
  * #OP = CGE, CLE#
  */
 static void
-C at TYPE@_ at kind@(char **args, intp *dimensions, intp *steps, void *func)
+C at TYPE@_ at kind@(char **args, intp *dimensions, intp *steps, void *NPY_UNUSED(func))
 {
     BINARY_LOOP {
         const @type@ in1r = ((@type@ *)ip1)[0];




More information about the Numpy-svn mailing list