comparison libinterp/corefcn/max.cc @ 21604:d7a268e68e69

maint: Strip trailing whitespace from source files.
author John W. Eaton <jwe@octave.org>
date Mon, 11 Apr 2016 10:53:18 -0400
parents 40de9f8f23a6
children aba2e6293dd8
comparison
equal deleted inserted replaced
21603:37cbdf7bffa9 21604:d7a268e68e69
137 retval(0) = retval(0).bool_array_value (); 137 retval(0) = retval(0).bool_array_value ();
138 } 138 }
139 } 139 }
140 else 140 else
141 { 141 {
142 // Sparse: Don't use any/all trick, as full matrix could exceed memory. 142 // Sparse: Don't use any/all trick, as full matrix could exceed memory.
143 // Instead, convert to double. 143 // Instead, convert to double.
144 retval = do_minmax_red_op<SparseMatrix> (arg, nargout, dim, ismin); 144 retval = do_minmax_red_op<SparseMatrix> (arg, nargout, dim, ismin);
145 145
146 retval(0) = retval(0).sparse_bool_matrix_value (); 146 retval(0) = retval(0).sparse_bool_matrix_value ();
147 } 147 }