diff src/oct-lvalue.h @ 10313:f3b65e1ae355

untabify src header files
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:16:43 -0500
parents d3fc22c3071c
children fd0a3ac60b0e
line wrap: on
line diff
--- a/src/oct-lvalue.h	Thu Feb 11 12:14:48 2010 -0500
+++ b/src/oct-lvalue.h	Thu Feb 11 12:16:43 2010 -0500
@@ -49,12 +49,12 @@
   octave_lvalue& operator = (const octave_lvalue& vr)
     {
       if (this != &vr)
-	{
-	  val = vr.val;
-	  type = vr.type;
-	  idx = vr.idx;
-	  nel = vr.nel;
-	}
+        {
+          val = vr.val;
+          type = vr.type;
+          idx = vr.idx;
+          nel = vr.nel;
+        }
 
       return *this;
     }