aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/PlainObjectBase.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-05-20 14:48:51 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-05-20 14:48:51 +0200
commitf43ae88892be4dddf895043d2c51ef354a404a00 (patch)
tree1e685d234773b6e020591c7e3a65bc4d48d12e53 /Eigen/src/Core/PlainObjectBase.h
parent8d6bd5691be9f7323c11dc179cf7121b3619428b (diff)
Rename EIGEN_HAVE_RVALUE_REFERENCES to EIGEN_HAS_RVALUE_REFERENCES
Diffstat (limited to 'Eigen/src/Core/PlainObjectBase.h')
-rw-r--r--Eigen/src/Core/PlainObjectBase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/PlainObjectBase.h b/Eigen/src/Core/PlainObjectBase.h
index b7a4fcea8..d929cc4aa 100644
--- a/Eigen/src/Core/PlainObjectBase.h
+++ b/Eigen/src/Core/PlainObjectBase.h
@@ -471,7 +471,7 @@ class PlainObjectBase : public internal::dense_xpr_base<Derived>::type
}
#endif
-#ifdef EIGEN_HAVE_RVALUE_REFERENCES
+#ifdef EIGEN_HAS_RVALUE_REFERENCES
EIGEN_DEVICE_FUNC
PlainObjectBase(PlainObjectBase&& other)
: m_storage( std::move(other.m_storage) )