summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/io/izlibstream.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/io/izlibstream.h b/include/io/izlibstream.h
index edf632eddf..4e9dc9c1ee 100644
--- a/include/io/izlibstream.h
+++ b/include/io/izlibstream.h
@@ -47,10 +47,6 @@ public:
explicit inflate_streambuf(std::istream& input, size_t bufsize = 32768, int window_bits = 32 + 15);
~inflate_streambuf() noexcept;
- //No copying or moving
- inflate_streambuf(const inflate_streambuf&) = delete;
- inflate_streambuf& operator=(const inflate_streambuf&) = delete;
-
///@return the wrapped istream
std::istream& get_istr() const { return is; }