diff liboctave/dim-vector.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/dim-vector.cc
+++ b/liboctave/dim-vector.cc
@@ -108,7 +108,7 @@
   return n;
 }
 
-dim_vector 
+dim_vector
 dim_vector::squeeze (void) const
 {
   dim_vector new_dims = *this;
@@ -226,12 +226,12 @@
 }
 
 // Rules for horzcat/vertcat are yet looser.
-// two arrays A, B can be concatenated 
+// two arrays A, B can be concatenated
 // horizontally (dim = 2) or vertically (dim = 1) if one of the
 // following holds, in this order:
-// 
+//
 // 1. cat(dim, A, B) works
-// 
+//
 // 2. A, B are 2D and one of them is an empty vector, in which
 // case the result is the other one except if both of them
 // are empty vectors, in which case the result is 0x0.