Mercurial > hg > octave-lyh
diff liboctave/fDiagMatrix.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/liboctave/fDiagMatrix.cc +++ b/liboctave/fDiagMatrix.cc @@ -184,7 +184,7 @@ if (i < 0 || i >= r) { (*current_liboctave_error_handler) ("invalid row selection"); - return FloatRowVector (); + return FloatRowVector (); } FloatRowVector retval (c, 0.0); @@ -200,7 +200,7 @@ if (! s) { (*current_liboctave_error_handler) ("invalid row selection"); - return FloatRowVector (); + return FloatRowVector (); } char c = *s; @@ -211,7 +211,7 @@ else { (*current_liboctave_error_handler) ("invalid row selection"); - return FloatRowVector (); + return FloatRowVector (); } } @@ -223,7 +223,7 @@ if (i < 0 || i >= c) { (*current_liboctave_error_handler) ("invalid column selection"); - return FloatColumnVector (); + return FloatColumnVector (); } FloatColumnVector retval (r, 0.0); @@ -239,7 +239,7 @@ if (! s) { (*current_liboctave_error_handler) ("invalid column selection"); - return FloatColumnVector (); + return FloatColumnVector (); } char c = *s; @@ -250,7 +250,7 @@ else { (*current_liboctave_error_handler) ("invalid column selection"); - return FloatColumnVector (); + return FloatColumnVector (); } }