bug #1596: fix inclusion of Eigen's header within unsupported modules.

This commit is contained in:
Gael Guennebaud
2018-09-17 09:54:29 +02:00
parent 72f19c827a
commit b311bfb752
24 changed files with 52 additions and 52 deletions

View File

@@ -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: */