aboutsummaryrefslogtreecommitdiffstats
path: root/src/utility/stream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utility/stream.cpp')
-rw-r--r--src/utility/stream.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/utility/stream.cpp b/src/utility/stream.cpp
index 94be1447..799c6c32 100644
--- a/src/utility/stream.cpp
+++ b/src/utility/stream.cpp
@@ -284,6 +284,13 @@ inputStreamPointerAdapter::inputStreamPointerAdapter(std::istream* is, const boo
}
+inputStreamPointerAdapter::inputStreamPointerAdapter(const inputStreamPointerAdapter&)
+ : inputStream(), m_stream(NULL), m_own(false)
+{
+ // Not copiable
+}
+
+
inputStreamPointerAdapter::~inputStreamPointerAdapter()
{
if (m_own)