diff src/OPERATORS/op-fm-fcs.cc @ 11586:12df7854fa7c

strip trailing whitespace from source files
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:24:59 -0500
parents fd0a3ac60b0e
children 72c96de7a403
line wrap: on
line diff
--- a/src/OPERATORS/op-fm-fcs.cc	Thu Jan 20 17:21:27 2011 -0500
+++ b/src/OPERATORS/op-fm-fcs.cc	Thu Jan 20 17:24:59 2011 -0500
@@ -77,20 +77,20 @@
   return ret;
 }
 
-DEFNDCMPLXCMPOP_FN (lt, float_matrix, float_complex, float_array, 
+DEFNDCMPLXCMPOP_FN (lt, float_matrix, float_complex, float_array,
                float_complex, mx_el_lt)
-DEFNDCMPLXCMPOP_FN (le, float_matrix, float_complex, float_array, 
+DEFNDCMPLXCMPOP_FN (le, float_matrix, float_complex, float_array,
                float_complex, mx_el_le)
-DEFNDCMPLXCMPOP_FN (eq, float_matrix, float_complex, float_array, 
+DEFNDCMPLXCMPOP_FN (eq, float_matrix, float_complex, float_array,
                float_complex, mx_el_eq)
-DEFNDCMPLXCMPOP_FN (ge, float_matrix, float_complex, float_array, 
+DEFNDCMPLXCMPOP_FN (ge, float_matrix, float_complex, float_array,
                float_complex, mx_el_ge)
-DEFNDCMPLXCMPOP_FN (gt, float_matrix, float_complex, float_array, 
+DEFNDCMPLXCMPOP_FN (gt, float_matrix, float_complex, float_array,
                float_complex, mx_el_gt)
-DEFNDCMPLXCMPOP_FN (ne, float_matrix, float_complex, float_array, 
+DEFNDCMPLXCMPOP_FN (ne, float_matrix, float_complex, float_array,
                float_complex, mx_el_ne)
 
-DEFNDBINOP_OP (el_mul, float_matrix, float_complex, float_array, 
+DEFNDBINOP_OP (el_mul, float_matrix, float_complex, float_array,
                float_complex, *)
 
 DEFBINOP (el_div, float_matrix, float_complex)
@@ -105,7 +105,7 @@
   return octave_value (v1.float_array_value () / d);
 }
 
-DEFNDBINOP_FN (el_pow, float_matrix, float_complex, float_array, 
+DEFNDBINOP_FN (el_pow, float_matrix, float_complex, float_array,
                float_complex, elem_xpow)
 
 DEFBINOP (el_ldiv, float_matrix, flaot_complex)
@@ -115,18 +115,18 @@
   return x_el_div (v2.float_complex_value (), v1.float_array_value ());
 }
 
-DEFNDBINOP_FN (el_and, float_matrix, float_complex, float_array, 
+DEFNDBINOP_FN (el_and, float_matrix, float_complex, float_array,
                float_complex, mx_el_and)
-DEFNDBINOP_FN (el_or, float_matrix, float_complex, float_array, 
+DEFNDBINOP_FN (el_or, float_matrix, float_complex, float_array,
                float_complex, mx_el_or)
 
-DEFNDCATOP_FN (fm_fcs, float_matrix, float_complex, float_array, 
+DEFNDCATOP_FN (fm_fcs, float_matrix, float_complex, float_array,
                float_complex_array, concat)
 
-DEFNDCATOP_FN (m_fcs, matrix, float_complex, float_array, 
+DEFNDCATOP_FN (m_fcs, matrix, float_complex, float_array,
                float_complex_array, concat)
 
-DEFNDCATOP_FN (fm_cs, float_matrix, complex, float_array, 
+DEFNDCATOP_FN (fm_cs, float_matrix, complex, float_array,
                float_complex_array, concat)
 
 void
@@ -155,8 +155,8 @@
   INSTALL_CATOP (octave_matrix, octave_float_complex, m_fcs);
   INSTALL_CATOP (octave_float_matrix, octave_complex, fm_cs);
 
-  INSTALL_ASSIGNCONV (octave_float_matrix, octave_float_complex, 
+  INSTALL_ASSIGNCONV (octave_float_matrix, octave_float_complex,
                       octave_float_complex_matrix);
-  INSTALL_ASSIGNCONV (octave_matrix, octave_float_complex, 
+  INSTALL_ASSIGNCONV (octave_matrix, octave_float_complex,
                       octave_complex_matrix);
 }