aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Array
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-03-02 15:31:39 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-03-02 15:31:39 +0100
commit2f3d685e0c687ae1121428dab6bc0ec868b14fe3 (patch)
treeb1a2470ff34d18c567987cdef31af042095b5c92 /Eigen/src/Array
parent0ed5edd24dc72404dd9f2a998d7a6b742d29ec9d (diff)
a matrix (or array) does not always have the LinearAccessBit!
=> fixes in outerStride and matrix flags
Diffstat (limited to 'Eigen/src/Array')
-rw-r--r--Eigen/src/Array/Array.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Eigen/src/Array/Array.h b/Eigen/src/Array/Array.h
index 91a091152..5a398d849 100644
--- a/Eigen/src/Array/Array.h
+++ b/Eigen/src/Array/Array.h
@@ -213,9 +213,6 @@ class Array
void swap(ArrayBase<OtherDerived> EIGEN_REF_TO_TEMPORARY other)
{ this->_swap(other.derived()); }
- inline int innerStride() const { return 1; }
- inline int outerStride() const { return this->innerSize(); }
-
#ifdef EIGEN_ARRAY_PLUGIN
#include EIGEN_ARRAY_PLUGIN
#endif