diff liboctave/CNDArray.h @ 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/CNDArray.h	Thu Jan 20 17:21:27 2011 -0500
+++ b/liboctave/CNDArray.h	Thu Jan 20 17:24:59 2011 -0500
@@ -44,7 +44,7 @@
 
   ComplexNDArray (const dim_vector& dv, const Complex& val)
     : MArray<Complex> (dv, val) { }
-  
+
   ComplexNDArray (const ComplexNDArray& a) : MArray<Complex> (a) { }
 
   ComplexNDArray (const ComplexMatrix& a) : MArray<Complex> (a) { }
@@ -55,7 +55,7 @@
   template <class U>
   ComplexNDArray (const Array<U>& a) : MArray<Complex> (a) { }
 
-  ComplexNDArray (const charNDArray&); 
+  ComplexNDArray (const charNDArray&);
 
   ComplexNDArray& operator = (const ComplexNDArray& a)
     {
@@ -102,7 +102,7 @@
   ComplexNDArray& insert (const NDArray& a, octave_idx_type r, octave_idx_type c);
   ComplexNDArray& insert (const ComplexNDArray& a, octave_idx_type r, octave_idx_type c);
   ComplexNDArray& insert (const ComplexNDArray& a, const Array<octave_idx_type>& ra_idx);
-  
+
   NDArray abs (void) const;
   boolNDArray isnan (void) const;
   boolNDArray isinf (void) const;
@@ -142,10 +142,10 @@
 
   ComplexNDArray diag (octave_idx_type k = 0) const;
 
-  ComplexNDArray& changesign (void) 
-    { 
-      MArray<Complex>::changesign (); 
-      return *this; 
+  ComplexNDArray& changesign (void)
+    {
+      MArray<Complex>::changesign ();
+      return *this;
     }
 
 };