Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph-Edwards committed Nov 18, 2024
1 parent e201955 commit 1eb8b88
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions include/libsemigroups/schreier-sims.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -933,9 +933,10 @@ namespace libsemigroups {

bool internal_equal_to(internal_const_element_type x,
internal_const_element_type y) const
noexcept(noexcept(EqualTo()(this->to_external_const(x),
this->to_external_const(y))
&& noexcept(this->to_external_const(x)))) {
noexcept(noexcept(
EqualTo()(this->to_external_const(x),
this->to_external_const(
y)) && noexcept(this->to_external_const(x)))) {
return EqualTo()(this->to_external_const(x), this->to_external_const(y));
}

Expand Down

0 comments on commit 1eb8b88

Please sign in to comment.