diff liboctave/oct-shlib.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 331fcc41ca23
line wrap: on
line diff
--- a/liboctave/oct-shlib.h
+++ b/liboctave/oct-shlib.h
@@ -129,13 +129,13 @@
   octave_shlib& operator = (const octave_shlib& sl)
     {
       if (rep != sl.rep)
-	{
-	  if (--rep->count == 0)
-	    delete rep;
+        {
+          if (--rep->count == 0)
+            delete rep;
 
-	  rep = sl.rep;
-	  rep->count++;
-	}
+          rep = sl.rep;
+          rep->count++;
+        }
 
       return *this;
     }