aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-09-15 15:24:21 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-09-15 15:24:21 +0200
commit82e4a1675964f4243e7bb4518e0328cb845ff4c9 (patch)
treeb42df0c9c40f473610553c82b069f5bc2b606770 /unsupported
parent77c943670ed7e4aad5a5ef8f2979f5949ce83a39 (diff)
remove superfluous #ifdef
Diffstat (limited to 'unsupported')
-rw-r--r--unsupported/Eigen/CholmodSupport8
-rw-r--r--unsupported/Eigen/TaucsSupport2
2 files changed, 3 insertions, 7 deletions
diff --git a/unsupported/Eigen/CholmodSupport b/unsupported/Eigen/CholmodSupport
index a5700a799..10fa169f2 100644
--- a/unsupported/Eigen/CholmodSupport
+++ b/unsupported/Eigen/CholmodSupport
@@ -5,11 +5,9 @@
#include "src/Core/util/DisableMSVCWarnings.h"
-#ifdef EIGEN_CHOLMOD_SUPPORT
- extern "C" {
- #include <cholmod.h>
- }
-#endif
+extern "C" {
+ #include <cholmod.h>
+}
namespace Eigen {
diff --git a/unsupported/Eigen/TaucsSupport b/unsupported/Eigen/TaucsSupport
index 585a81810..dca2c095b 100644
--- a/unsupported/Eigen/TaucsSupport
+++ b/unsupported/Eigen/TaucsSupport
@@ -39,9 +39,7 @@ namespace Eigen {
* \endcode
*/
-#ifdef EIGEN_TAUCS_SUPPORT
# include "src/SparseExtra/TaucsSupport.h"
-#endif
} // namespace Eigen