aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/Polynomials
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/Polynomials
parent72f19c827a04b01d1ba9ed81a3744d965bdf4e05 (diff)
bug #1596: fix inclusion of Eigen's header within unsupported modules.
Diffstat (limited to 'unsupported/Eigen/Polynomials')
-rw-r--r--unsupported/Eigen/Polynomials8
1 files changed, 4 insertions, 4 deletions
diff --git a/unsupported/Eigen/Polynomials b/unsupported/Eigen/Polynomials
index 334b03142..146e5c404 100644
--- a/unsupported/Eigen/Polynomials
+++ b/unsupported/Eigen/Polynomials
@@ -9,11 +9,11 @@
#ifndef EIGEN_POLYNOMIALS_MODULE_H
#define EIGEN_POLYNOMIALS_MODULE_H
-#include <Eigen/Core>
+#include "../../Eigen/Core"
-#include <Eigen/Eigenvalues>
+#include "../../Eigen/Eigenvalues"
-#include <Eigen/src/Core/util/DisableStupidWarnings.h>
+#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
// Note that EIGEN_HIDE_HEAVY_CODE has to be defined per module
#if (defined EIGEN_EXTERN_INSTANTIATIONS) && (EIGEN_EXTERN_INSTANTIATIONS>=2)
@@ -132,7 +132,7 @@
Output: \verbinclude PolynomialSolver1.out
*/
-#include <Eigen/src/Core/util/ReenableStupidWarnings.h>
+#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
#endif // EIGEN_POLYNOMIALS_MODULE_H
/* vim: set filetype=cpp et sw=2 ts=2 ai: */