Skip to content

Commit

Permalink
Format conglatt.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-mitchell committed May 17, 2023
1 parent 5190bbe commit 22c29bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/conglatt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ namespace semigroups {

// not noexcept because the constructors of std::vector and std::array
// aren't
UF(UF const&) = default;
UF(UF const&) = default;
UF& operator=(UF const&) = default;
UF(UF&&) = default;
UF& operator=(UF&&) = default;
~UF() = default;
UF& operator=(UF&&) = default;
~UF() = default;

// not noexcept because std::vector::operator[] isn't
index_type find(index_type x) const {
Expand Down

0 comments on commit 22c29bb

Please sign in to comment.