comparison libinterp/octave-value/ov-mex-fcn.h @ 30869:5fa3d8f0dcb3 stable

don't use mutable keyword for dld_function and mex_function data members * ov-dld-fcn.h (octave_dld_function::m_time_checked): Rename from m_t_checked. Change all uses. Don't declare as mutable. * ov-mex-fcn.h (octave_mex_function::m_time_checked): Don't declare as mutable.
author John W. Eaton <jwe@octave.org>
date Thu, 24 Mar 2022 12:09:12 -0400
parents 796f54d4ddbf
children c9788d7f6e65
comparison
equal deleted inserted replaced
30868:e2eed3610b7b 30869:5fa3d8f0dcb3
112 112
113 octave::dynamic_library m_sh_lib; 113 octave::dynamic_library m_sh_lib;
114 114
115 // The time the file was last checked to see if it needs to be 115 // The time the file was last checked to see if it needs to be
116 // parsed again. 116 // parsed again.
117 mutable octave::sys::time m_time_checked; 117 octave::sys::time m_time_checked;
118 118
119 bool m_interleaved; 119 bool m_interleaved;
120 120
121 bool m_is_fmex; 121 bool m_is_fmex;
122 122