aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/ArpackSupport
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-09-17 09:54:29 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-09-17 09:54:29 +0200
commitb311bfb752c925aab15d9e2148e179577e62afd8 (patch)
tree948b0999c7165113f62293549ba9bb90e0d91484 /unsupported/Eigen/ArpackSupport
parent72f19c827a04b01d1ba9ed81a3744d965bdf4e05 (diff)
bug #1596: fix inclusion of Eigen's header within unsupported modules.
Diffstat (limited to 'unsupported/Eigen/ArpackSupport')
-rw-r--r--unsupported/Eigen/ArpackSupport8
1 files changed, 4 insertions, 4 deletions
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 <Eigen/Core>
+#include "../../Eigen/Core"
/** \defgroup ArpackSupport_Module Arpack support module
*
@@ -20,12 +20,12 @@
* \endcode
*/
-#include <Eigen/SparseCholesky>
+#include "../../Eigen/SparseCholesky"
-#include <Eigen/src/Core/util/DisableStupidWarnings.h>
+#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
#include "src/Eigenvalues/ArpackSelfAdjointEigenSolver.h"
-#include <Eigen/src/Core/util/ReenableStupidWarnings.h>
+#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
#endif // EIGEN_ARPACKSUPPORT_MODULE_H
/* vim: set filetype=cpp et sw=2 ts=2 ai: */