Deleted useless trailing commas

This commit is contained in:
Benoit Steiner 2016-04-29 18:36:10 -07:00
parent 44f592dceb
commit e5f71aa6b2
4 changed files with 6 additions and 6 deletions

View File

@ -36,7 +36,7 @@ struct traits<TensorAssignOp<LhsXprType, RhsXprType> >
static const int Layout = internal::traits<LhsXprType>::Layout; static const int Layout = internal::traits<LhsXprType>::Layout;
enum { enum {
Flags = 0, Flags = 0
}; };
}; };
@ -100,7 +100,7 @@ struct TensorEvaluator<const TensorAssignOp<LeftArgType, RightArgType>, Device>
IsAligned = TensorEvaluator<LeftArgType, Device>::IsAligned & TensorEvaluator<RightArgType, Device>::IsAligned, IsAligned = TensorEvaluator<LeftArgType, Device>::IsAligned & TensorEvaluator<RightArgType, Device>::IsAligned,
PacketAccess = TensorEvaluator<LeftArgType, Device>::PacketAccess & TensorEvaluator<RightArgType, Device>::PacketAccess, PacketAccess = TensorEvaluator<LeftArgType, Device>::PacketAccess & TensorEvaluator<RightArgType, Device>::PacketAccess,
Layout = TensorEvaluator<LeftArgType, Device>::Layout, Layout = TensorEvaluator<LeftArgType, Device>::Layout,
RawAccess = TensorEvaluator<LeftArgType, Device>::RawAccess, RawAccess = TensorEvaluator<LeftArgType, Device>::RawAccess
}; };
EIGEN_DEVICE_FUNC TensorEvaluator(const XprType& op, const Device& device) : EIGEN_DEVICE_FUNC TensorEvaluator(const XprType& op, const Device& device) :

View File

@ -41,7 +41,7 @@ struct traits<TensorContractionOp<Dimensions, LhsXprType, RhsXprType> >
static const int Layout = traits<LhsXprType>::Layout; static const int Layout = traits<LhsXprType>::Layout;
enum { enum {
Flags = 0, Flags = 0
}; };
}; };

View File

@ -16,7 +16,7 @@ namespace internal {
enum { enum {
Rhs = 0, Rhs = 0,
Lhs = 1, Lhs = 1
}; };
/* /*

View File

@ -40,7 +40,7 @@ struct traits<TensorCwiseNullaryOp<NullaryOp, XprType> >
static const int Layout = XprTraits::Layout; static const int Layout = XprTraits::Layout;
enum { enum {
Flags = 0, Flags = 0
}; };
}; };
@ -163,7 +163,7 @@ struct traits<TensorCwiseBinaryOp<BinaryOp, LhsXprType, RhsXprType> >
static const int Layout = XprTraits::Layout; static const int Layout = XprTraits::Layout;
enum { enum {
Flags = 0, Flags = 0
}; };
}; };