Commas at the end of enumerator lists are not allowed in C++03

This commit is contained in:
Christoph Hertzberg 2019-02-19 14:32:25 +01:00
parent 2cfc025bda
commit a1646fc960

View File

@ -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()); }