mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
Remove extra comma (causes warnings in C++03)
This commit is contained in:
parent
229db81572
commit
adec097c61
@ -436,7 +436,7 @@ struct TensorEvaluator<TensorChippingOp<DimId, ArgType>, Device>
|
||||
// Chipping inner-most dimension.
|
||||
IsInnerChipping =
|
||||
(static_cast<int>(Layout) == ColMajor && DimId == 0) ||
|
||||
(static_cast<int>(Layout) == RowMajor && DimId == NumInputDims - 1),
|
||||
(static_cast<int>(Layout) == RowMajor && DimId == NumInputDims - 1)
|
||||
};
|
||||
|
||||
typedef typename internal::remove_const<Scalar>::type ScalarNoConst;
|
||||
|
Loading…
Reference in New Issue
Block a user