changeset 27470:96d4094585da

eliminate unused backtrace field name "scope" * call-stack.cc (bt_fields): Don't include unused "scope" identifier in the list of backtrace field names.
author John W. Eaton <jwe@octave.org>
date Fri, 04 Oct 2019 00:30:34 -0400
parents 7daf71f990f8
children fd32c1a9b1bd
files libinterp/corefcn/call-stack.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/call-stack.cc	Fri Oct 04 10:07:48 2019 +0200
+++ b/libinterp/corefcn/call-stack.cc	Fri Oct 04 00:30:34 2019 -0400
@@ -53,7 +53,7 @@
   // Use static fields for the best efficiency.
   // NOTE: C++0x will allow these two to be merged into one.
   static const char *bt_fieldnames[] =
-    { "file", "name", "line", "column", "scope", nullptr };
+    { "file", "name", "line", "column", nullptr };
 
   static const octave_fields bt_fields (bt_fieldnames);