diff liboctave/dbleSCHUR.h @ 10312:cbc402e64d83

untabify liboctave header files
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:14:48 -0500
parents 4c0cdbe0acca
children 23d2378512a0
line wrap: on
line diff
--- a/liboctave/dbleSCHUR.h	Thu Feb 11 11:57:36 2010 -0500
+++ b/liboctave/dbleSCHUR.h	Thu Feb 11 12:14:48 2010 -0500
@@ -42,7 +42,7 @@
     : schur_mat (), unitary_mat () { init (a, ord, calc_unitary); }
 
   SCHUR (const Matrix& a, const std::string& ord, int& info, 
-	 bool calc_unitary = true)
+         bool calc_unitary = true)
     : schur_mat (), unitary_mat () { info = init (a, ord, calc_unitary); }
 
   SCHUR (const SCHUR& a)
@@ -51,10 +51,10 @@
   SCHUR& operator = (const SCHUR& a)
     {
       if (this != &a)
-	{
-	  schur_mat = a.schur_mat;
-	  unitary_mat = a.unitary_mat;
-	}
+        {
+          schur_mat = a.schur_mat;
+          unitary_mat = a.unitary_mat;
+        }
       return *this;
     }