Skip to content

Commit

Permalink
Formatting fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
HappyCerberus committed Sep 28, 2022
1 parent 2a09740 commit cf6f83f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code_examples/theory/adl_niebloid_code.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ namespace impl {
struct DoSomethingFn {
template <typename T> void operator()(T&& arg) const
requires HasCustomImpl<T> {
do_something(std::forward<T>(arg));
}
do_something(std::forward<T>(arg));
}

template <typename T> void operator()(T&&) const
requires (!HasCustomImpl<T>) { /* default implementation */ }
Expand Down

0 comments on commit cf6f83f

Please sign in to comment.