Skip to content

Commit

Permalink
remove noexcept
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoralez committed May 6, 2024
1 parent 3860813 commit 4a1ba1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/rolling.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ template <typename T, typename Comp> class SortedDeque {
buffer_.pop_front();
}
}
T Get() const noexcept { return buffer_.front().val; }
T Get() const { return buffer_.front().val; }

private:
std::deque<ValWithIdx<T>> buffer_;
Expand Down

0 comments on commit 4a1ba1c

Please sign in to comment.