changeset 14982:d27fa4f03706

Fix bad merge
author Max Brister <max@2bass.com>
date Mon, 09 Jul 2012 12:21:19 -0500
parents 50e9e02d7c0e
children a5f75de0dab1
files src/pt-id.cc src/pt-id.h
diffstat 2 files changed, 0 insertions(+), 28 deletions(-) [+]
line wrap: on
line diff
--- a/src/pt-id.cc	Mon Jul 09 09:55:35 2012 -0500
+++ b/src/pt-id.cc	Mon Jul 09 12:21:19 2012 -0500
@@ -114,11 +114,7 @@
 octave_lvalue
 tree_identifier::lvalue (void)
 {
-<<<<<<< local
   return octave_lvalue (&(sym->varref ()));
-=======
-  return octave_lvalue (&(xsym ().varref ()));
->>>>>>> other
 }
 
 tree_identifier *
--- a/src/pt-id.h	Mon Jul 09 09:55:35 2012 -0500
+++ b/src/pt-id.h	Mon Jul 09 12:21:19 2012 -0500
@@ -63,17 +63,9 @@
   // accessing it through sym so that this function may remain const.
   std::string name (void) const { return sym.name (); }
 
-<<<<<<< local
   bool is_defined (void) { return sym->is_defined (); }
-=======
-  bool is_defined (void) { return xsym ().is_defined (); }
->>>>>>> other
 
-<<<<<<< local
   virtual bool is_variable (void) { return sym->is_variable (); }
-=======
-  virtual bool is_variable (void) { return xsym ().is_variable (); }
->>>>>>> other
 
   virtual bool is_black_hole (void) { return false; }
 
@@ -95,30 +87,14 @@
   octave_value
   do_lookup (const octave_value_list& args = octave_value_list ())
   {
-<<<<<<< local
     return sym->find (args);
-=======
-    return xsym ().find (args);
->>>>>>> other
   }
 
-<<<<<<< local
   void mark_global (void) { sym->mark_global (); }
-=======
-  void mark_global (void) { xsym ().mark_global (); }
->>>>>>> other
 
-<<<<<<< local
   void mark_as_static (void) { sym->init_persistent (); }
-=======
-  void mark_as_static (void) { xsym ().init_persistent (); }
->>>>>>> other
 
-<<<<<<< local
   void mark_as_formal_parameter (void) { sym->mark_formal (); }
-=======
-  void mark_as_formal_parameter (void) { xsym ().mark_formal (); }
->>>>>>> other
 
   // We really need to know whether this symbol referst to a variable
   // or a function, but we may not know that yet.