comparison libinterp/octave-value/ov-cell.h @ 31143:b3ca7f891750

maint: use "m_" prefix for member variables in class octave_base_matrix. * ov-base-int.cc, ov-base-mat.cc, ov-base-mat.h, ov-base.h, ov-bool-mat.cc, ov-bool-mat.h, ov-cell.cc, ov-cell.h, ov-ch-mat.cc, ov-ch-mat.h, ov-cx-mat.cc, ov-cx-mat.h, ov-flt-cx-mat.cc, ov-flt-cx-mat.h, ov-flt-re-mat.cc, ov-flt-re-mat.h, ov-intx.h, ov-re-mat.cc, ov-re-mat.h, ov-str-mat.cc, ov-str-mat.h: use "m_" prefix for member variables in class octave_base_matrix.
author Rik <rik@octave.org>
date Sun, 10 Jul 2022 18:26:24 -0700
parents 796f54d4ddbf
children
comparison
equal deleted inserted replaced
31142:6308ce73bdca 31143:b3ca7f891750
134 134
135 bool iscellstr (void) const; 135 bool iscellstr (void) const;
136 136
137 bool is_true (void) const; 137 bool is_true (void) const;
138 138
139 Cell cell_value (void) const { return matrix; } 139 Cell cell_value (void) const { return m_matrix; }
140 140
141 octave_value_list list_value (void) const; 141 octave_value_list list_value (void) const;
142 142
143 octave_value convert_to_str_internal (bool pad, bool, char type) const 143 octave_value convert_to_str_internal (bool pad, bool, char type) const
144 { return octave_value (string_vector_value (pad), type); } 144 { return octave_value (string_vector_value (pad), type); }