# HG changeset patch # User John W. Eaton # Date 1630554807 14400 # Node ID b08749cb3261f64e6b477ebd1c740b9a792e13c8 # Parent 67994b92a6130edb2835978cb231c96153b9d123 eliminate unused member variable in octave_user_function class * ov-usr-fcn.h (octave_user_function::m_parent_function): Delete unused variable. diff -r 67994b92a613 -r b08749cb3261 libinterp/octave-value/ov-usr-fcn.h --- a/libinterp/octave-value/ov-usr-fcn.h Wed Sep 01 23:50:07 2021 -0400 +++ b/libinterp/octave-value/ov-usr-fcn.h Wed Sep 01 23:53:27 2021 -0400 @@ -459,9 +459,6 @@ // TRUE means this is a nested function. bool m_nested_function; - // TRUE means this function contains a nested function. - bool m_parent_function; - // Enum describing whether this function is the constructor for class object. class_method_type m_class_constructor;