We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80608fe commit d810699Copy full SHA for d810699
1 file changed
include/boost/iostreams/filtering_stream.hpp
@@ -93,7 +93,9 @@ class filtering_stream_base
93
typename Chain::char_type,
94
typename Chain::traits_type
95
>::stream_type stream_type;
96
- ~filtering_stream_base() BOOST_NOEXCEPT = default;
+
97
+ BOOST_DEFAULTED_FUNCTION(~filtering_stream_base() BOOST_NOEXCEPT, { })
98
99
filtering_stream_base() : stream_type(0) { this->set_chain(&chain_); }
100
private:
101
void notify() { this->rdbuf(chain_.empty() ? 0 : &chain_.front()); }
0 commit comments