diff src/pt-unop.h @ 10313:f3b65e1ae355

untabify src header files
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:16:43 -0500
parents cd96d29c5efa
children fd0a3ac60b0e
line wrap: on
line diff
--- a/src/pt-unop.h	Thu Feb 11 12:14:48 2010 -0500
+++ b/src/pt-unop.h	Thu Feb 11 12:16:43 2010 -0500
@@ -43,13 +43,13 @@
 public:
 
   tree_unary_expression (int l = -1, int c = -1,
-			 octave_value::unary_op t
-			   = octave_value::unknown_unary_op)
+                         octave_value::unary_op t
+                           = octave_value::unknown_unary_op)
     : tree_expression (l, c), op (0), etype (t)  { }
 
   tree_unary_expression (tree_expression *e, int l = -1, int c = -1,
-			 octave_value::unary_op t
-			   = octave_value::unknown_unary_op)
+                         octave_value::unary_op t
+                           = octave_value::unknown_unary_op)
     : tree_expression (l, c), op (e), etype (t) { }
 
   ~tree_unary_expression (void) { delete op; }
@@ -92,8 +92,8 @@
     : tree_unary_expression (l, c, octave_value::unknown_unary_op) { }
 
   tree_prefix_expression (tree_expression *e, int l = -1, int c = -1,
-			  octave_value::unary_op t
-			    = octave_value::unknown_unary_op)
+                          octave_value::unary_op t
+                            = octave_value::unknown_unary_op)
     : tree_unary_expression (e, l, c, t) { }
 
   ~tree_prefix_expression (void) { }
@@ -105,7 +105,7 @@
   octave_value_list rvalue (int nargout);
 
   tree_expression *dup (symbol_table::scope_id scope,
-			symbol_table::context_id context) const;
+                        symbol_table::context_id context) const;
 
   void accept (tree_walker& tw);
 
@@ -129,8 +129,8 @@
     : tree_unary_expression (l, c, octave_value::unknown_unary_op) { }
 
   tree_postfix_expression (tree_expression *e, int l = -1, int c = -1,
-			   octave_value::unary_op t
-			     = octave_value::unknown_unary_op)
+                           octave_value::unary_op t
+                             = octave_value::unknown_unary_op)
     : tree_unary_expression (e, l, c, t) { }
 
   ~tree_postfix_expression (void) { }
@@ -142,7 +142,7 @@
   octave_value_list rvalue (int nargout);
 
   tree_expression *dup (symbol_table::scope_id scope,
-			symbol_table::context_id context) const;
+                        symbol_table::context_id context) const;
 
   void accept (tree_walker& tw);