Skip to content

Commit

Permalink
Format files
Browse files Browse the repository at this point in the history
Co-authored-by: Gregor Olenik <[email protected]>
  • Loading branch information
ginkgo-bot and greole committed Jul 24, 2023
1 parent 2555353 commit eb7c740
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/ginkgo/core/base/range.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ struct implement_binary_operation<operation_kind::range_by_scalar,
template <typename Operand> \
struct [[deprecated( \
"Please use " #_operation_name)]] _operation_deprecated_name \
: _operation_name<Operand> {}; \
: _operation_name<Operand>{}; \
} \
static_assert(true, \
"This assert is used to counter the false positive extra " \
Expand Down Expand Up @@ -864,7 +864,7 @@ GKO_BIND_UNARY_RANGE_OPERATION_TO_OPERATOR(transpose_operation, transpose);


#define GKO_DEPRECATED_SIMPLE_BINARY_OPERATION(_deprecated_name, _name) \
struct [[deprecated("Please use " #_name)]] _deprecated_name : _name {};
struct [[deprecated("Please use " #_name)]] _deprecated_name : _name{};

#define GKO_DEFINE_SIMPLE_BINARY_OPERATION(_name, ...) \
struct _name { \
Expand Down

0 comments on commit eb7c740

Please sign in to comment.