aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost/iostreams
diff options
context:
space:
mode:
authorrobot-contrib <robot-contrib@yandex-team.com>2023-04-29 17:05:30 +0300
committerrobot-contrib <robot-contrib@yandex-team.com>2023-04-29 17:05:30 +0300
commit071975f6fb62a197dcfa258caf210c26126a8e2a (patch)
treeffef7205dbc2b4f0f0464f5eaab547f4cfea9f2d /contrib/restricted/boost/iostreams
parent5141f0d41e8d7c15ff668346d60be6db03175670 (diff)
downloadydb-071975f6fb62a197dcfa258caf210c26126a8e2a.tar.gz
Update contrib/restricted/boost/iostreams to 1.82.0
Diffstat (limited to 'contrib/restricted/boost/iostreams')
-rw-r--r--contrib/restricted/boost/iostreams/include/boost/iostreams/filter/gzip.hpp12
-rw-r--r--contrib/restricted/boost/iostreams/include/boost/iostreams/filter/zstd.hpp4
2 files changed, 8 insertions, 8 deletions
diff --git a/contrib/restricted/boost/iostreams/include/boost/iostreams/filter/gzip.hpp b/contrib/restricted/boost/iostreams/include/boost/iostreams/filter/gzip.hpp
index e236983e0b..84b2445b2d 100644
--- a/contrib/restricted/boost/iostreams/include/boost/iostreams/filter/gzip.hpp
+++ b/contrib/restricted/boost/iostreams/include/boost/iostreams/filter/gzip.hpp
@@ -138,15 +138,15 @@ const int os_unknown = 255;
struct gzip_params : zlib_params {
// Non-explicit constructor.
- gzip_params( int level = gzip::default_compression,
- int method = gzip::deflated,
- int window_bits = gzip::default_window_bits,
- int mem_level = gzip::default_mem_level,
- int strategy = gzip::default_strategy,
+ gzip_params( int level_ = gzip::default_compression,
+ int method_ = gzip::deflated,
+ int window_bits_ = gzip::default_window_bits,
+ int mem_level_ = gzip::default_mem_level,
+ int strategy_ = gzip::default_strategy,
std::string file_name_ = "",
std::string comment_ = "",
std::time_t mtime_ = 0 )
- : zlib_params(level, method, window_bits, mem_level, strategy),
+ : zlib_params(level_, method_, window_bits_, mem_level_, strategy_),
file_name(file_name_), comment(comment_), mtime(mtime_)
{ }
std::string file_name;
diff --git a/contrib/restricted/boost/iostreams/include/boost/iostreams/filter/zstd.hpp b/contrib/restricted/boost/iostreams/include/boost/iostreams/filter/zstd.hpp
index 176799d937..d9d18f2893 100644
--- a/contrib/restricted/boost/iostreams/include/boost/iostreams/filter/zstd.hpp
+++ b/contrib/restricted/boost/iostreams/include/boost/iostreams/filter/zstd.hpp
@@ -183,8 +183,8 @@ public:
};
//
-// Template name: zstd_compressor_impl
-// Description: Model of C-Style Filte implementing decompression by
+// Template name: zstd_decompressor_impl
+// Description: Model of C-Style Filter implementing decompression by
// delegating to the zstd function inflate.
//
template<typename Alloc = std::allocator<char> >