core: Change private to protected in MatrixArray to allow inheritance

This commit is contained in:
Biljana Bojovic
2023-03-28 19:13:03 +02:00
committed by Biljana B
parent b72c6437b7
commit 8101dbb147

View File

@@ -247,7 +247,7 @@ class MatrixArray : public ValArray<T>
EnableBool)>::type>
MatrixArray<T> HermitianTranspose() const;
private:
protected:
// To simplify functions in MatrixArray that are using members from the template base class
using ValArray<T>::m_numRows;
using ValArray<T>::m_numCols;