changeset 30920:47cbc69e66cd

eliminate direct access to call stack from evaluator The call stack is an internal implementation detail of the evaluator. Direct access to it outside of the evlauator should not be needed. * pt-eval.h (tree_evaluator::get_call_stack): Delete.
author John W. Eaton <jwe@octave.org>
date Fri, 08 Apr 2022 15:19:22 -0400
parents 4ed7dfe28584
children 17c80c35265a
files libinterp/parse-tree/pt-eval.h
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/parse-tree/pt-eval.h	Fri Apr 08 14:11:05 2022 -0400
+++ b/libinterp/parse-tree/pt-eval.h	Fri Apr 08 15:19:22 2022 -0400
@@ -430,8 +430,6 @@
 
     profiler& get_profiler (void) { return m_profiler; }
 
-    call_stack& get_call_stack (void) { return m_call_stack; }
-
     void push_stack_frame (const symbol_scope& scope);
 
     void push_stack_frame (octave_user_function *fcn,