summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorljfa-ag <ljfa-ag@web.de>2015-09-20 19:15:27 +0200
committerljfa-ag <ljfa-ag@web.de>2015-09-20 19:15:27 +0200
commit84d2896da1c3f3ef0be80476585422d8b1230289 (patch)
treed400b490a6a8f556a0fe61d557ccc2dee9b275d6 /include
parent264ec99e7bae08710449262e609c20ad76383615 (diff)
downloadProject-Tick-84d2896da1c3f3ef0be80476585422d8b1230289.tar.gz
Project-Tick-84d2896da1c3f3ef0be80476585422d8b1230289.zip
Implement ozlibstream
Diffstat (limited to 'include')
-rw-r--r--include/io/ozlibstream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/io/ozlibstream.h b/include/io/ozlibstream.h
index 0be792d482..d4ea8c2840 100644
--- a/include/io/ozlibstream.h
+++ b/include/io/ozlibstream.h
@@ -78,7 +78,7 @@ public:
* @param bufsize the size of the internal buffers
*/
explicit ozlibstream(std::ostream& output, int level = Z_DEFAULT_COMPRESSION, bool gzip = false, size_t bufsize = 32768):
- std::ostream(&buf), buf(output, level, bufsize, 15 + (gzip ? 16 : 0))
+ std::ostream(&buf), buf(output, bufsize, level, 15 + (gzip ? 16 : 0))
{}
///@return the wrapped ostream