Skip to content

Commit e100c93

Browse files
committed
Explicit inherit using for Clang.
1 parent d193a66 commit e100c93

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/pico_tree/eigen.hpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,10 @@ class EigenAdaptor
100100
: public internal::EigenAdaptorBase<Index, Matrix, Matrix::IsRowMajor> {
101101
public:
102102
//! \private
103-
using Base = internal::EigenAdaptorBase<Index, Matrix, Matrix::IsRowMajor>;
104-
using Base::EigenAdaptorBase;
105-
using Base::matrix_;
103+
using internal::EigenAdaptorBase<Index, Matrix, Matrix::IsRowMajor>::
104+
EigenAdaptorBase;
105+
//! \private
106+
using internal::EigenAdaptorBase<Index, Matrix, Matrix::IsRowMajor>::matrix_;
106107

107108
//! \brief Returns a reference to the Eigen matrix.
108109
inline Matrix& matrix() { return matrix_; }

0 commit comments

Comments
 (0)