diff libinterp/corefcn/input.cc @ 29950:6549fa7558ba

eliminate some unnecessary octave:: namespace tags Where possible, remove octave:: namespace tags used inside a "namespace octave" block. Files affected: event-manager.cc, hook-fcn.cc, input.cc, latex-text-renderer.cc, oct-hist.cc, sysdep.cc, cdef-object.cc, cdef-object.h, oct-parse.yy, pt-eval.cc, CollocWt.cc, oct-convn.cc, oct-norm.cc, file-ops.cc.
author John W. Eaton <jwe@octave.org>
date Fri, 13 Aug 2021 14:08:16 -0400
parents da7210e30f3e
children 32c3a5805893
line wrap: on
line diff
--- a/libinterp/corefcn/input.cc	Tue Aug 10 16:42:29 2021 -0400
+++ b/libinterp/corefcn/input.cc	Fri Aug 13 14:08:16 2021 -0400
@@ -908,7 +908,7 @@
     file_reader (interpreter& interp, FILE *f_arg)
       : base_reader (interp), m_file (f_arg)
     {
-      octave::input_system& input_sys = interp.get_input_system ();
+      input_system& input_sys = interp.get_input_system ();
       m_encoding = input_sys.mfile_encoding ();
     }