summaryrefslogtreecommitdiff
path: root/include/io/zlib_streambuf.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/io/zlib_streambuf.h')
-rw-r--r--include/io/zlib_streambuf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/io/zlib_streambuf.h b/include/io/zlib_streambuf.h
index 36062192b7..e7bb780902 100644
--- a/include/io/zlib_streambuf.h
+++ b/include/io/zlib_streambuf.h
@@ -15,7 +15,7 @@ class zlib_error : public std::runtime_error
public:
const int errcode;
- explicit zlib_error(const char* msg, int errcode):
+ zlib_error(const char* msg, int errcode):
std::runtime_error(msg
? std::string(zError(errcode)) + ": " + msg
: zError(errcode)),