Skip to content

Commit

Permalink
Format files
Browse files Browse the repository at this point in the history
Co-authored-by: Pratik Nayak <[email protected]>
  • Loading branch information
ginkgo-bot and pratikvn committed Oct 4, 2023
1 parent 014a533 commit cd54742
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions include/ginkgo/core/log/logger.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -455,9 +455,9 @@ public: \
* @warning This on_iteration_complete function that this macro declares is
* deprecated. Please use the version with the stopping information.
*/
[
[deprecated("Please use the version with the additional stopping "
"information.")]] virtual void
[[deprecated(
"Please use the version with the additional stopping "
"information.")]] virtual void
on_iteration_complete(const LinOp* solver, const size_type& it,
const LinOp* r, const LinOp* x = nullptr,
const LinOp* tau = nullptr) const
Expand All @@ -476,9 +476,9 @@ public: \
* @warning This on_iteration_complete function that this macro declares is
* deprecated. Please use the version with the stopping information.
*/
[
[deprecated("Please use the version with the additional stopping "
"information.")]] virtual void
[[deprecated(
"Please use the version with the additional stopping "
"information.")]] virtual void
on_iteration_complete(const LinOp* solver, const size_type& it,
const LinOp* r, const LinOp* x, const LinOp* tau,
const LinOp* implicit_tau_sq) const
Expand Down Expand Up @@ -874,8 +874,8 @@ class EnableLogging : public PolymorphicBase {
template <size_type Event, typename ConcreteLoggableT>
struct propagate_log_helper<
Event, ConcreteLoggableT,
xstd::void_t<decltype(
std::declval<ConcreteLoggableT>().get_executor())>> {
xstd::void_t<
decltype(std::declval<ConcreteLoggableT>().get_executor())>> {
template <typename... Args>
static void propagate_log(const ConcreteLoggableT* loggable,
Args&&... args)
Expand Down

0 comments on commit cd54742

Please sign in to comment.