Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
template<typename Scalar>
struct scalar_sum_of_finites_op
{
EIGEN_EMPTY_STRUCT_CTOR(scalar_sum_of_finites_op)
EIGEN_STRONG_INLINE const Scalar operator()(const Scalar & a, const Scalar & b) const
{
using std::isfinite;
Expand All @@ -29,7 +28,6 @@ struct functor_traits<scalar_sum_of_finites_op<Scalar>>
template<typename Scalar>
struct scalar_min_of_finites_op
{
EIGEN_EMPTY_STRUCT_CTOR(scalar_min_of_finites_op)
EIGEN_STRONG_INLINE const Scalar operator()(const Scalar & a, const Scalar & b) const
{
using std::min;
Expand All @@ -53,7 +51,6 @@ struct functor_traits<scalar_min_of_finites_op<Scalar>>
template<typename Scalar>
struct scalar_max_of_finites_op
{
EIGEN_EMPTY_STRUCT_CTOR(scalar_max_of_finites_op)
EIGEN_STRONG_INLINE const Scalar operator()(const Scalar & a, const Scalar & b) const
{
using std::max;
Expand Down