Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKutzner committed Nov 5, 2024
1 parent b09d4c0 commit ec3bbdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/nigiri/common/interval.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ struct interval {
t_ -= x;
return *this;
}
iterator operator+(difference_type const x) const { return { t_ + x }; }
iterator operator-(difference_type const x) const { return { t_ - x }; }
iterator operator+(difference_type const x) const { return {t_ + x}; }
iterator operator-(difference_type const x) const { return {t_ - x}; }
friend difference_type operator-(iterator const& a, iterator const& b) {
return static_cast<difference_type>(cista::to_idx(a.t_) -
cista::to_idx(b.t_));
Expand Down

0 comments on commit ec3bbdd

Please sign in to comment.