Skip to content

Commit 2682d41

Browse files
committed
fix build issue for Eigen v3.4.0
Signed-off-by: Gluttton <gluttton@ukr.net>
1 parent f4fb6bd commit 2682d41

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/munkres-cpp/adapters/matrix_eigen.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ template<class T>
2929
class matrix_eigen : public matrix_base<T>, public Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic>
3030
{
3131
public:
32+
using matrix_base<T>::begin;
33+
using matrix_base<T>::end;
34+
3235
matrix_eigen (size_t rows, size_t columns)
3336
: Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic>::Matrix (rows, columns)
3437
{

0 commit comments

Comments
 (0)