diff libinterp/parse-tree/pt-unop.cc @ 24270:bc3819b7cca1

don't use symbol_table:: nesting for symbol_record, symbol_scope, or fcn_info Change all uses of symbol_table::symbol_record to symbol_record. Change all uses of symbol_table::scope to symbol_scope. Change all uses of symbol_table::fcn_info to fcn_info.
author John W. Eaton <jwe@octave.org>
date Thu, 16 Nov 2017 21:43:47 -0500
parents 980f39c3ab90
children 194eb4bd202b
line wrap: on
line diff
--- a/libinterp/parse-tree/pt-unop.cc	Thu Nov 16 19:39:00 2017 -0500
+++ b/libinterp/parse-tree/pt-unop.cc	Thu Nov 16 21:43:47 2017 -0500
@@ -40,7 +40,7 @@
   // Prefix expressions.
 
   tree_expression *
-  tree_prefix_expression::dup (symbol_table::scope& scope) const
+  tree_prefix_expression::dup (symbol_scope& scope) const
   {
     tree_prefix_expression *new_pe
       = new tree_prefix_expression (op ? op->dup (scope) : nullptr,
@@ -54,7 +54,7 @@
   // Postfix expressions.
 
   tree_expression *
-  tree_postfix_expression::dup (symbol_table::scope& scope) const
+  tree_postfix_expression::dup (symbol_scope& scope) const
   {
     tree_postfix_expression *new_pe
       = new tree_postfix_expression (op ? op->dup (scope) : nullptr,