mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-07-29 00:02:40 +08:00
Commas at the end of enumerator lists are not allowed in C++03
This commit is contained in:
parent
2cfc025bda
commit
a1646fc960
@ -368,7 +368,7 @@ struct blas_traits<Transpose<NestedXpr> >
|
|||||||
typename ExtractType::PlainObject
|
typename ExtractType::PlainObject
|
||||||
>::type DirectLinearAccessType;
|
>::type DirectLinearAccessType;
|
||||||
enum {
|
enum {
|
||||||
IsTransposed = Base::IsTransposed ? 0 : 1,
|
IsTransposed = Base::IsTransposed ? 0 : 1
|
||||||
};
|
};
|
||||||
static inline ExtractType extract(const XprType& x) { return ExtractType(Base::extract(x.nestedExpression())); }
|
static inline ExtractType extract(const XprType& x) { return ExtractType(Base::extract(x.nestedExpression())); }
|
||||||
static inline Scalar extractScalarFactor(const XprType& x) { return Base::extractScalarFactor(x.nestedExpression()); }
|
static inline Scalar extractScalarFactor(const XprType& x) { return Base::extractScalarFactor(x.nestedExpression()); }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user