Skip to content

Commit

Permalink
Change noexcept to BOOST_NOEXCEPT; remove override.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaykrell committed Oct 21, 2021
1 parent 96cae4d commit 80608fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/iostreams/filtering_stream.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class filtering_stream_base
typename Chain::char_type,
typename Chain::traits_type
>::stream_type stream_type;
~filtering_stream_base() noexcept override = default;
~filtering_stream_base() BOOST_NOEXCEPT = default;
filtering_stream_base() : stream_type(0) { this->set_chain(&chain_); }
private:
void notify() { this->rdbuf(chain_.empty() ? 0 : &chain_.front()); }
Expand Down

0 comments on commit 80608fe

Please sign in to comment.