fixed missing return arg of operator=()

This commit is contained in:
Francois Chabot 2020-02-19 15:23:49 -05:00
parent 2e2cf02cfd
commit de35fad88e
2 changed files with 2 additions and 0 deletions

View file

@ -103,6 +103,7 @@ class input_stream_adapter
sb = rhs.sb;
rhs.is = nullptr;
rhs.sb = nullptr;
return *this;
}
// std::istream/std::streambuf use std::char_traits<char>::to_int_type, to

View file

@ -3966,6 +3966,7 @@ class input_stream_adapter
sb = rhs.sb;
rhs.is = nullptr;
rhs.sb = nullptr;
return *this;
}
// std::istream/std::streambuf use std::char_traits<char>::to_int_type, to