aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Array.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-12-25 16:45:25 -0500
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-12-25 16:45:25 -0500
commit86d3711fb7e06bd1e31ae6ad5fbac35fe17e5a3d (patch)
tree38548a07a32751da7f02587d6f4649e65c767f90 /Eigen/src/Core/Array.h
parent75b7d98665dd144c44d7a113c6613f5f998be626 (diff)
remove EIGEN_REF_TO_TEMPORARY, clarify docs
Diffstat (limited to 'Eigen/src/Core/Array.h')
-rw-r--r--Eigen/src/Core/Array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/Array.h b/Eigen/src/Core/Array.h
index 0861d7ab1..68bd6c32c 100644
--- a/Eigen/src/Core/Array.h
+++ b/Eigen/src/Core/Array.h
@@ -230,7 +230,7 @@ class Array
* data pointers.
*/
template<typename OtherDerived>
- void swap(ArrayBase<OtherDerived> EIGEN_REF_TO_TEMPORARY other)
+ void swap(ArrayBase<OtherDerived> const & other)
{ this->_swap(other.derived()); }
inline Index innerStride() const { return 1; }