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.
1 parent d193a66 commit e100c93Copy full SHA for e100c93
src/pico_tree/eigen.hpp
@@ -100,9 +100,10 @@ class EigenAdaptor
100
: public internal::EigenAdaptorBase<Index, Matrix, Matrix::IsRowMajor> {
101
public:
102
//! \private
103
- using Base = internal::EigenAdaptorBase<Index, Matrix, Matrix::IsRowMajor>;
104
- using Base::EigenAdaptorBase;
105
- using Base::matrix_;
+ using internal::EigenAdaptorBase<Index, Matrix, Matrix::IsRowMajor>::
+ EigenAdaptorBase;
+ //! \private
106
+ using internal::EigenAdaptorBase<Index, Matrix, Matrix::IsRowMajor>::matrix_;
107
108
//! \brief Returns a reference to the Eigen matrix.
109
inline Matrix& matrix() { return matrix_; }
0 commit comments