diff libinterp/parse-tree/pt-classdef.h @ 28857:43ad651cf5a0

eliminate unnecessary uses of octave:: namespace qualifier Affected files: graphics-init.cc, octave-qscintilla.cc, octave-qobject.h, qt-application.h, workspace-view.cc, call-stack.cc, dynamic-ld.cc, error.cc, error.h, event-manager.h, fcn-info.cc, ft-text-renderer.cc, gl-render.cc, gl2ps-print.cc, graphics-toolkit.cc, input.cc, load-path.cc, oct-hist.cc, oct-stream.cc, pager.cc, stack-frame.cc, symscope.cc, sysdep.cc, __ode15__.cc, cdef-class.cc, ov-fcn-handle.cc, ov.cc, ov.h, oct-parse.yy, pt-classdef.h, pt-eval.cc, Range.cc, Range.h, dir-ops.h, file-stat.cc, lo-sysdep.cc, lo-utils.cc, oct-glob.cc, and url-transfer.cc.
author John W. Eaton <jwe@octave.org>
date Mon, 05 Oct 2020 15:19:15 -0400
parents d5efdf5cfc56
children 7854d5752dd2
line wrap: on
line diff
--- a/libinterp/parse-tree/pt-classdef.h	Mon Oct 05 13:57:00 2020 -0400
+++ b/libinterp/parse-tree/pt-classdef.h	Mon Oct 05 15:19:15 2020 -0400
@@ -768,7 +768,7 @@
   {
   public:
 
-    tree_classdef (const octave::symbol_scope& scope,
+    tree_classdef (const symbol_scope& scope,
                    tree_classdef_attribute_list *a, tree_identifier *i,
                    tree_classdef_superclass_list *sc,
                    tree_classdef_body *b, comment_list *lc,
@@ -795,7 +795,7 @@
       delete m_trail_comm;
     }
 
-    octave::symbol_scope scope (void) { return m_scope; }
+    symbol_scope scope (void) { return m_scope; }
 
     tree_classdef_attribute_list *
     attribute_list (void) { return m_attr_list; }
@@ -831,7 +831,7 @@
     // corresponds to any identifiers that were found in attribute lists
     // (for example).  Used again when computing the meta class object.
 
-    octave::symbol_scope m_scope;
+    symbol_scope m_scope;
 
     tree_classdef_attribute_list *m_attr_list;