diff libinterp/corefcn/hook-fcn.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 8a296f1351a4
children 796f54d4ddbf
line wrap: on
line diff
--- a/libinterp/corefcn/hook-fcn.cc	Tue Aug 10 16:42:29 2021 -0400
+++ b/libinterp/corefcn/hook-fcn.cc	Fri Aug 13 14:08:16 2021 -0400
@@ -55,7 +55,7 @@
     if (m_data.is_defined ())
       args.append (m_data);
 
-    octave::feval (m_name, args, 0);
+    feval (m_name, args, 0);
   }
 
   void fcn_handle_hook_function::eval (const octave_value_list& initial_args)
@@ -65,6 +65,6 @@
     if (m_data.is_defined ())
       args.append (m_data);
 
-    octave::feval (m_fcn_handle, args, 0);
+    feval (m_fcn_handle, args, 0);
   }
 }