diff liboctave/CmplxSVD.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/CmplxSVD.h	Thu Jan 20 17:21:27 2011 -0500
+++ b/liboctave/CmplxSVD.h	Thu Jan 20 17:24:59 2011 -0500
@@ -40,7 +40,7 @@
     { }
 
   ComplexSVD (const ComplexMatrix& a, SVD::type svd_type = SVD::std,
-              SVD::driver svd_driver = SVD::GESVD) 
+              SVD::driver svd_driver = SVD::GESVD)
     : type_computed (), sigma (), left_sm (), right_sm ()
     {
       init (a, svd_type, svd_driver);
@@ -48,7 +48,7 @@
 
   ComplexSVD (const ComplexMatrix& a, octave_idx_type& info,
               SVD::type svd_type = SVD::std,
-              SVD::driver svd_driver = SVD::GESVD) 
+              SVD::driver svd_driver = SVD::GESVD)
     : type_computed (), sigma (), left_sm (), right_sm ()
     {
       info = init (a, svd_type, svd_driver);
@@ -90,7 +90,7 @@
   ComplexMatrix right_sm;
 
   octave_idx_type init (const ComplexMatrix& a,
-                        SVD::type svd_type = SVD::std, 
+                        SVD::type svd_type = SVD::std,
                         SVD::driver svd_driver = SVD::GESVD);
 };