diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2022-12-22 18:40:56 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2022-12-22 18:40:56 +0300 |
commit | 9a65d94b5624becec67095637fad81e93fdaa35f (patch) | |
tree | 6abf2abf65e8605171f03c6ac09712d56d33241d | |
parent | 31be66f1e859a47b67a5a0e7699a48e48ea3126c (diff) | |
download | ydb-9a65d94b5624becec67095637fad81e93fdaa35f.tar.gz |
Update contrib/restricted/boost/iostreams to 1.81.0
-rw-r--r-- | contrib/restricted/boost/iostreams/README.md | 4 | ||||
-rw-r--r-- | contrib/restricted/boost/iostreams/include/boost/iostreams/filter/zlib.hpp | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/contrib/restricted/boost/iostreams/README.md b/contrib/restricted/boost/iostreams/README.md index 5bdc70d40a6..23cbeaaf27a 100644 --- a/contrib/restricted/boost/iostreams/README.md +++ b/contrib/restricted/boost/iostreams/README.md @@ -18,8 +18,8 @@ Distributed under the [Boost Software License, Version 1.0](http://www.boost.org Branch | Travis | Appveyor | Coverity Scan | codecov.io | Deps | Docs | Tests | :-------------: | ------ | -------- | ------------- | ---------- | ---- | ---- | ----- | -[`master`](https://github.com/boostorg/iostreams/tree/master) | [](https://travis-ci.org/boostorg/iostreams) | [](https://ci.appveyor.com/project/eldiener/iostreams/branch/master) | [](https://scan.coverity.com/projects/boostorg-iostreams) | [](https://codecov.io/gh/boostorg/iostreams/branch/master)| [](https://pdimov.github.io/boostdep-report/master/iostreams.html) | [](http://www.boost.org/doc/libs/master/doc/html/iostreams.html) | [](http://www.boost.org/development/tests/master/developer/iostreams.html) -[`develop`](https://github.com/boostorg/iostreams/tree/develop) | [](https://travis-ci.org/boostorg/iostreams) | [](https://ci.appveyor.com/project/eldiener/iostreams/branch/develop) | [](https://scan.coverity.com/projects/boostorg-iostreams) | [](https://codecov.io/gh/boostorg/iostreams/branch/develop) | [](https://pdimov.github.io/boostdep-report/develop/iostreams.html) | [](http://www.boost.org/doc/libs/develop/doc/html/iostreams.html) | [](http://www.boost.org/development/tests/develop/developer/iostreams.html) +[`master`](https://github.com/boostorg/iostreams/tree/master) | [](https://travis-ci.org/boostorg/iostreams) | [](https://ci.appveyor.com/project/eldiener/iostreams/branch/master) | [](https://scan.coverity.com/projects/boostorg-iostreams) | [](https://codecov.io/gh/boostorg/iostreams/branch/master)| [](https://pdimov.github.io/boostdep-report/master/iostreams.html) | [](https://www.boost.org/doc/libs/master/libs/iostreams/doc/index.html) | [](http://www.boost.org/development/tests/master/developer/iostreams.html) +[`develop`](https://github.com/boostorg/iostreams/tree/develop) | [](https://travis-ci.org/boostorg/iostreams) | [](https://ci.appveyor.com/project/eldiener/iostreams/branch/develop) | [](https://scan.coverity.com/projects/boostorg-iostreams) | [](https://codecov.io/gh/boostorg/iostreams/branch/develop) | [](https://pdimov.github.io/boostdep-report/develop/iostreams.html) | [](https://www.boost.org/doc/libs/develop/libs/iostreams/doc/index.html) | [](http://www.boost.org/development/tests/develop/developer/iostreams.html) ### Directories diff --git a/contrib/restricted/boost/iostreams/include/boost/iostreams/filter/zlib.hpp b/contrib/restricted/boost/iostreams/include/boost/iostreams/filter/zlib.hpp index e57870a510f..e2461fba600 100644 --- a/contrib/restricted/boost/iostreams/include/boost/iostreams/filter/zlib.hpp +++ b/contrib/restricted/boost/iostreams/include/boost/iostreams/filter/zlib.hpp @@ -389,7 +389,8 @@ bool zlib_decompressor_impl<Alloc>::filter int result = xinflate(zlib::sync_flush); after(src_begin, dest_begin, false); zlib_error::check BOOST_PREVENT_MACRO_SUBSTITUTION(result); - return !(eof_ = result == zlib::stream_end); + eof_ = result == zlib::stream_end; + return !eof_; } template<typename Alloc> |