aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-04-19 16:34:25 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-04-19 16:34:25 +0200
commite87f6539241b55ed03b175908e6326b385cf3920 (patch)
tree369fe511ed70e272a6b7d5b4a1852fe4cd883446
parent67d50f539bbd254dbb6cbe15568888aec99b2535 (diff)
fix bug #250: compilation error with gcc 4.6 (STL header files no longer include cstddef)
-rw-r--r--Eigen/Core1
1 files changed, 1 insertions, 0 deletions
diff --git a/Eigen/Core b/Eigen/Core
index a59c4c08c..7f4a62156 100644
--- a/Eigen/Core
+++ b/Eigen/Core
@@ -143,6 +143,7 @@
#ifdef EIGEN_HAS_ERRNO
#include <cerrno>
#endif
+#include <cstddef>
#include <cstdlib>
#include <cmath>
#include <complex>