From b311bfb752c925aab15d9e2148e179577e62afd8 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Mon, 17 Sep 2018 09:54:29 +0200 Subject: bug #1596: fix inclusion of Eigen's header within unsupported modules. --- unsupported/Eigen/ArpackSupport | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'unsupported/Eigen/ArpackSupport') diff --git a/unsupported/Eigen/ArpackSupport b/unsupported/Eigen/ArpackSupport index a0d4820e1..28c95ffa2 100644 --- a/unsupported/Eigen/ArpackSupport +++ b/unsupported/Eigen/ArpackSupport @@ -9,7 +9,7 @@ #ifndef EIGEN_ARPACKSUPPORT_MODULE_H #define EIGEN_ARPACKSUPPORT_MODULE_H -#include +#include "../../Eigen/Core" /** \defgroup ArpackSupport_Module Arpack support module * @@ -20,12 +20,12 @@ * \endcode */ -#include +#include "../../Eigen/SparseCholesky" -#include +#include "../../Eigen/src/Core/util/DisableStupidWarnings.h" #include "src/Eigenvalues/ArpackSelfAdjointEigenSolver.h" -#include +#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h" #endif // EIGEN_ARPACKSUPPORT_MODULE_H /* vim: set filetype=cpp et sw=2 ts=2 ai: */ -- cgit v1.2.3