[Numpy-svn] r8119 - trunk/numpy/core/include/numpy

numpy-svn at scipy.org numpy-svn at scipy.org
Wed Feb 17 11:48:19 EST 2010


Author: charris
Date: 2010-02-17 10:48:19 -0600 (Wed, 17 Feb 2010)
New Revision: 8119

Modified:
   trunk/numpy/core/include/numpy/npy_common.h
Log:
STY: Remove hard tabs.

Modified: trunk/numpy/core/include/numpy/npy_common.h
===================================================================
--- trunk/numpy/core/include/numpy/npy_common.h	2010-02-17 16:48:13 UTC (rev 8118)
+++ trunk/numpy/core/include/numpy/npy_common.h	2010-02-17 16:48:19 UTC (rev 8119)
@@ -95,7 +95,7 @@
 
 /*
  * Disabling C99 complex usage: a lot of C code in numpy/scipy rely on being
- * able to do .real/.imag. Will have to convert code first. 
+ * able to do .real/.imag. Will have to convert code first.
  */
 #if 0
 #if defined(NPY_USE_C99_COMPLEX) && defined(NPY_HAVE_COMPLEX_DOUBLE)
@@ -118,22 +118,22 @@
 #endif
 #if NPY_SIZEOF_COMPLEX_DOUBLE != 2 * NPY_SIZEOF_DOUBLE
 #error npy_cdouble definition is not compatible with C99 complex definition ! \
-	Please contact Numpy maintainers and give detailed information about your \
-	compiler and platform
+        Please contact Numpy maintainers and give detailed information about your \
+        compiler and platform
 #endif
 typedef struct { double real, imag; } npy_cdouble;
 
 #if NPY_SIZEOF_COMPLEX_FLOAT != 2 * NPY_SIZEOF_FLOAT
 #error npy_cfloat definition is not compatible with C99 complex definition ! \
-	Please contact Numpy maintainers and give detailed information about your \
-	compiler and platform
+        Please contact Numpy maintainers and give detailed information about your \
+        compiler and platform
 #endif
 typedef struct { float real, imag; } npy_cfloat;
 
 #if NPY_SIZEOF_COMPLEX_LONGDOUBLE != 2 * NPY_SIZEOF_LONGDOUBLE
 #error npy_clongdouble definition is not compatible with C99 complex definition ! \
-	Please contact Numpy maintainers and give detailed information about your \
-	compiler and platform
+        Please contact Numpy maintainers and give detailed information about your \
+        compiler and platform
 #endif
 typedef struct { npy_longdouble real, imag; } npy_clongdouble;
 




More information about the Numpy-svn mailing list