We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9a905a1 + e60e824 commit b2c0e17Copy full SHA for b2c0e17
include/xtensor-io/xfile_array.hpp
@@ -536,7 +536,7 @@ namespace xt
536
template <class... Idxs>
537
inline auto xfile_array_container<E, IOH>::operator()(Idxs... idxs) -> reference
538
{
539
- return reference(m_storage(idxs...), m_dirty);
+ return reference(m_storage(idxs...), m_dirty, m_invalidate);
540
}
541
542
template <class E, class IOH>
@@ -621,7 +621,7 @@ namespace xt
621
622
inline auto xfile_array_container<E, IOH>::data_element(size_type i) -> reference
623
624
- return reference(m_storage.data_element(i), m_dirty);
+ return reference(m_storage.data_element(i), m_dirty, m_invalidate);
625
626
627
0 commit comments