diff liboctave/DASRT.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 4638800cd660
line wrap: on
line diff
--- a/liboctave/DASRT.h	Thu Feb 11 11:57:36 2010 -0500
+++ b/liboctave/DASRT.h	Thu Feb 11 12:14:48 2010 -0500
@@ -44,11 +44,11 @@
   DASRT_result& operator = (const DASRT_result& r)
     {
       if (this != &r)
-	{
-	  x = r.x;
-	  xdot = r.xdot;
+        {
+          x = r.x;
+          xdot = r.xdot;
           t = r.t;
-	}
+        }
       return *this;
     }
 
@@ -77,7 +77,7 @@
     : DAERT (s, tm, f), DASRT_options (), initialized (false) { }
 
   DASRT (const ColumnVector& s, const ColumnVector& deriv,
-	 double tm, DAERTFunc& f)
+         double tm, DAERTFunc& f)
     : DAERT (s, deriv, tm, f), DASRT_options (), initialized (false) { }
 
   ~DASRT (void) { }
@@ -85,7 +85,7 @@
   DASRT_result integrate (const ColumnVector& tout);
 
   DASRT_result integrate (const ColumnVector& tout,
-			  const ColumnVector& tcrit); 
+                          const ColumnVector& tcrit); 
 
   std::string error_message (void) const;