diff options
Diffstat (limited to 'src/utility/stream.cpp')
-rw-r--r-- | src/utility/stream.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/utility/stream.cpp b/src/utility/stream.cpp index ac219fbd..549fb6e3 100644 --- a/src/utility/stream.cpp +++ b/src/utility/stream.cpp @@ -112,7 +112,6 @@ void outputStreamAdapter::flush() outputStreamStringAdapter::outputStreamStringAdapter(string& buffer) : m_buffer(buffer) { - m_buffer.clear(); } @@ -134,7 +133,6 @@ void outputStreamStringAdapter::flush() outputStreamByteArrayAdapter::outputStreamByteArrayAdapter(byteArray& array) : m_array(array) { - m_array.clear(); } |