summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorljfa-ag <ljfa-ag@web.de>2015-09-15 14:25:23 +0200
committerljfa-ag <ljfa-ag@web.de>2015-09-15 14:25:23 +0200
commit5d0b98fb46b1aba137677d45b3c74726143eb6fa (patch)
tree4e6554627a9707dfe69132a0e40d520ae27d81b1 /include
parent7a8a1833dc766abc1626a1e590e3f39a7d503062 (diff)
downloadProject-Tick-5d0b98fb46b1aba137677d45b3c74726143eb6fa.tar.gz
Project-Tick-5d0b98fb46b1aba137677d45b3c74726143eb6fa.zip
Copying and moving is implicitly disabled anyway
Diffstat (limited to 'include')
-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; }