aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Matrix.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-05-20 14:54:20 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-05-20 14:54:20 +0200
commit48bf5ec2164974c88935148aa1dff09a41d532b2 (patch)
tree5dd972cc4785fc10508af318412db185a2b133d7 /Eigen/src/Core/Matrix.h
parentf43ae88892be4dddf895043d2c51ef354a404a00 (diff)
Make EIGEN_HAS_RVALUE_REFERENCES user configurable
Diffstat (limited to 'Eigen/src/Core/Matrix.h')
-rw-r--r--Eigen/src/Core/Matrix.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/Matrix.h b/Eigen/src/Core/Matrix.h
index f053f759d..ac40c82f0 100644
--- a/Eigen/src/Core/Matrix.h
+++ b/Eigen/src/Core/Matrix.h
@@ -268,7 +268,7 @@ class Matrix
: Base(internal::constructor_without_unaligned_array_assert())
{ Base::_check_template_params(); EIGEN_INITIALIZE_COEFFS_IF_THAT_OPTION_IS_ENABLED }
-#ifdef EIGEN_HAS_RVALUE_REFERENCES
+#if EIGEN_HAS_RVALUE_REFERENCES
EIGEN_DEVICE_FUNC
Matrix(Matrix&& other)
: Base(std::move(other))