diff liboctave/SparseCmplxQR.cc @ 6719:30e1320bb0ee

[project @ 2007-06-13 22:22:51 by dbateman]
author dbateman
date Wed, 13 Jun 2007 22:22:52 +0000
parents 8c8ef7e4821d
children be176b7e110a
line wrap: on
line diff
--- a/liboctave/SparseCmplxQR.cc	Wed Jun 13 21:17:39 2007 +0000
+++ b/liboctave/SparseCmplxQR.cc	Wed Jun 13 22:22:52 2007 +0000
@@ -37,13 +37,13 @@
   OCTAVE_LOCAL_BUFFER (double, buf ## tmp, (2 * (n))); \
   cs_complex_t *buf = reinterpret_cast<cs_complex_t *> (buf ## tmp);
 
+#define OCTAVE_C99_ZERO (0. + 0.iF)
 #else
 #define OCTAVE_C99_COMPLEX(buf, n) \
   OCTAVE_LOCAL_BUFFER (cs_complex_t, buf, (n));
+#define OCTAVE_C99_ZERO cs_complex_t(0., 0.);
 #endif
 
-#define OCTAVE_C99_ZERO (0. + 0.iF)
-
 SparseComplexQR::SparseComplexQR_rep::SparseComplexQR_rep 
 (GCC_ATTR_UNUSED const SparseComplexMatrix& a, GCC_ATTR_UNUSED int order)
 {