aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Core
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-06-03 14:28:25 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-06-03 14:28:25 +0200
commit8d97ba6b2251aabf325ff74f24959ceaa85cf11e (patch)
tree0bd426a49b729fa2a9260bad8cab750cc39587d4 /Eigen/Core
parente8b922ca631b47e9a1044454402ff0ed5e77e18c (diff)
bug #725: make move ctor/assignment noexcept.
Diffstat (limited to 'Eigen/Core')
-rw-r--r--Eigen/Core5
1 files changed, 5 insertions, 0 deletions
diff --git a/Eigen/Core b/Eigen/Core
index 6c79bcfae..25cb87930 100644
--- a/Eigen/Core
+++ b/Eigen/Core
@@ -252,6 +252,11 @@
// for min/max:
#include <algorithm>
+// for std::is_nothrow_move_assignable
+#ifdef EIGEN_INCLUDE_TYPE_TRAITS
+#include <type_traits>
+#endif
+
// for outputting debug info
#ifdef EIGEN_DEBUG_ASSIGN
#include <iostream>