diff liboctave/base-de.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 fd0a3ac60b0e
line wrap: on
line diff
--- a/liboctave/base-de.h
+++ b/liboctave/base-de.h
@@ -50,15 +50,15 @@
   base_diff_eqn& operator = (const base_diff_eqn& a)
     {
       if (this != &a)
-	{
-	  x = a.x;
-	  t = a.t;
-	  stop_time = a.stop_time;
-	  stop_time_set = a.stop_time_set;
-	  restart = a.restart;
-	  integration_error = a.integration_error;
-	  istate = a.istate;
-	}
+        {
+          x = a.x;
+          t = a.t;
+          stop_time = a.stop_time;
+          stop_time_set = a.stop_time_set;
+          restart = a.restart;
+          integration_error = a.integration_error;
+          istate = a.istate;
+        }
 
       return *this;
     }