aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util
diff options
context:
space:
mode:
authorGravatar Xiaoxiang Cao <xxc142@case.edu>2020-04-30 01:43:05 +0000
committerGravatar Xiaoxiang Cao <xxc142@case.edu>2020-04-30 01:43:05 +0000
commita74a278abd3f16e72d68c23da29329327aa296df (patch)
tree2d8d16441606c9f276858f4491be9008875164ee /Eigen/src/Core/util
parent923ee9aba3c631946ee92b5d2a6987b1dfb2d753 (diff)
Fix confusing template param name for Stride fwd decl.
Diffstat (limited to 'Eigen/src/Core/util')
-rw-r--r--Eigen/src/Core/util/ForwardDeclarations.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/util/ForwardDeclarations.h b/Eigen/src/Core/util/ForwardDeclarations.h
index 676dee15d..cd0bdb5a7 100644
--- a/Eigen/src/Core/util/ForwardDeclarations.h
+++ b/Eigen/src/Core/util/ForwardDeclarations.h
@@ -110,7 +110,7 @@ template<typename _IndicesType> class TranspositionsWrapper;
template<typename Derived,
int Level = internal::accessors_level<Derived>::has_write_access ? WriteAccessors : ReadOnlyAccessors
> class MapBase;
-template<int InnerStrideAtCompileTime, int OuterStrideAtCompileTime> class Stride;
+template<int OuterStrideAtCompileTime, int InnerStrideAtCompileTime> class Stride;
template<int Value = Dynamic> class InnerStride;
template<int Value = Dynamic> class OuterStride;
template<typename MatrixType, int MapOptions=Unaligned, typename StrideType = Stride<0,0> > class Map;