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

numpy-svn at scipy.org numpy-svn at scipy.org
Tue Nov 11 20:28:32 EST 2008


Author: charris
Date: 2008-11-11 19:28:23 -0600 (Tue, 11 Nov 2008)
New Revision: 6013

Modified:
   trunk/numpy/core/src/math_c99.inc.src
Log:
Fix missing semicolons on some function declarations.

Modified: trunk/numpy/core/src/math_c99.inc.src
===================================================================
--- trunk/numpy/core/src/math_c99.inc.src	2008-11-12 01:12:43 UTC (rev 6012)
+++ trunk/numpy/core/src/math_c99.inc.src	2008-11-12 01:28:23 UTC (rev 6013)
@@ -29,11 +29,11 @@
  * #kind = atan2,hypot,pow,fmod#
  */
 
- at type@ @kind@@c@(@type@ x, @type@ y)
+ at type@ @kind@@c@(@type@ x, @type@ y);
 
 /**end repeat1**/
 
- at type@ modf at c@(@type@ x, @type@ *iptr)
+ at type@ modf at c@(@type@ x, @type@ *iptr);
 
 /**end repeat**/
 /*




More information about the Numpy-svn mailing list