From: Mikko Rasa Date: Mon, 6 Oct 2014 22:30:39 +0000 (+0300) Subject: Silence clang's complaints about unused private members X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=commitdiff_plain;h=75bad78a6bb2ee39805c2c3c6627f95bfe776937 Silence clang's complaints about unused private members --- diff --git a/source/io/zlibcompressed.cpp b/source/io/zlibcompressed.cpp index a558853..ffb08c5 100644 --- a/source/io/zlibcompressed.cpp +++ b/source/io/zlibcompressed.cpp @@ -89,6 +89,8 @@ void ZlibCompressed::init(unsigned level) below.signal_flush_required.connect(sigc::mem_fun(this, &ZlibCompressed::flush)); #else + (void)buffer_size; + (void)stream_end; (void)level; throw zlib_error("unsupported", -1); #endif