changeset 9594:01004c3cde2c

fix non-strict complex comparisons
author Jaroslav Hajek <highegg@gmail.com>
date Tue, 01 Sep 2009 08:42:08 +0200
parents cf8403208c43
children dbd0c0f82480
files liboctave/ChangeLog liboctave/oct-cmplx.h
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/ChangeLog	Tue Sep 01 08:15:59 2009 +0200
+++ b/liboctave/ChangeLog	Tue Sep 01 08:42:08 2009 +0200
@@ -1,3 +1,7 @@
+2009-09-01  Jaroslav Hajek  <highegg@gmail.com>
+
+	* oct-cmplx.h: Correct strict operators in macros.
+
 2009-08-31  John W. Eaton  <jwe@octave.org>
 
 	* liboctave/lo-ieee.cc (octave_ieee_init): Abort if floating point
--- a/liboctave/oct-cmplx.h	Tue Sep 01 08:15:59 2009 +0200
+++ b/liboctave/oct-cmplx.h	Tue Sep 01 08:42:08 2009 +0200
@@ -58,8 +58,8 @@
 
 DEF_COMPLEXR_COMP (>, >)
 DEF_COMPLEXR_COMP (<, <)
-DEF_COMPLEXR_COMP (<=, <=)
-DEF_COMPLEXR_COMP (>=, >=)
+DEF_COMPLEXR_COMP (<=, <)
+DEF_COMPLEXR_COMP (>=, >)
 
 #endif