summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/io/ozlibstream.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/io/ozlibstream.h b/include/io/ozlibstream.h
index 954bcc182d..0e19aaaa2b 100644
--- a/include/io/ozlibstream.h
+++ b/include/io/ozlibstream.h
@@ -20,7 +20,6 @@
#ifndef OZLIBSTREAM_H_INCLUDED
#define OZLIBSTREAM_H_INCLUDED
-#include "io/zlib_error.h"
#include <ostream>
#include <vector>
#include <zlib.h>
@@ -38,14 +37,6 @@ public:
explicit deflate_streambuf(std::ostream& output, int level = -1, int window_bits = 15, int mem_level = 8, int strategy = Z_DEFAULT_STRATEGY);
~deflate_streambuf() noexcept;
- //Moving
- deflate_streambuf(deflate_streambuf&&) noexcept = default;
- deflate_streambuf& operator=(deflate_streambuf&&) noexcept = default;
-
- //No copying
- deflate_streambuf(const deflate_streambuf&) = delete;
- deflate_streambuf& operator=(const deflate_streambuf&) = delete;
-
std::ostream& get_ostr() const { return os; }
private: