From 4a40b3785dc81112856d517676dbcfa9204e16df Mon Sep 17 00:00:00 2001 From: Christian von Schultz Date: Mon, 22 Oct 2018 21:14:40 +0200 Subject: Collapsed revision (based on pull request PR-325) * Support compiling without IO streams Add the preprocessor definition EIGEN_NO_IO which, if defined, disables all use of the IO streams part of the standard library. --- Eigen/Core | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Eigen/Core') diff --git a/Eigen/Core b/Eigen/Core index a4596e73b..0c09f7c79 100644 --- a/Eigen/Core +++ b/Eigen/Core @@ -72,7 +72,9 @@ #include #include #include -#include +#ifndef EIGEN_NO_IO + #include +#endif #include #include #include @@ -224,7 +226,9 @@ using std::ptrdiff_t; #include "src/Core/util/IndexedViewHelper.h" #include "src/Core/util/ReshapedHelper.h" #include "src/Core/ArithmeticSequence.h" -#include "src/Core/IO.h" +#ifndef EIGEN_NO_IO + #include "src/Core/IO.h" +#endif #include "src/Core/DenseCoeffsBase.h" #include "src/Core/DenseBase.h" #include "src/Core/MatrixBase.h" -- cgit v1.2.3