diff liboctave/boolNDArray.cc @ 9578:7dafdb8b062f

refactor comparison ops implementations
author Jaroslav Hajek <highegg@gmail.com>
date Thu, 27 Aug 2009 11:19:33 +0200
parents 3d6a9aea2aea
children a9b37bae1802
line wrap: on
line diff
--- a/liboctave/boolNDArray.cc	Thu Aug 27 08:38:56 2009 +0200
+++ b/liboctave/boolNDArray.cc	Thu Aug 27 11:19:33 2009 +0200
@@ -142,13 +142,13 @@
 }
 
 NDND_BOOL_OPS (boolNDArray, boolNDArray)
-NDND_CMP_OPS (boolNDArray, , boolNDArray, )
+NDND_CMP_OPS (boolNDArray, boolNDArray)
 
 NDS_BOOL_OPS (boolNDArray, bool)
-NDS_CMP_OPS (boolNDArray, , bool, )
+NDS_CMP_OPS (boolNDArray, bool)
 
 SND_BOOL_OPS (bool, boolNDArray)
-SND_CMP_OPS (bool, , boolNDArray, )
+SND_CMP_OPS (bool, boolNDArray)
 
 boolNDArray& 
 mx_el_and_assign (boolNDArray& a, const boolNDArray& b)