diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2017-10-04 13:32:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-04 13:32:56 +0100 |
commit | afb9326f7437c9eeaa2617c589312263bc7a14ba (patch) | |
tree | 52f7aaeaba5efb3f7825536a7222863bc60b2fb0 /lib/Support | |
parent | 9dd7fb2e56338f891da916c68b8b69c7c2a91ed8 (diff) | |
parent | b7f50f1db9d51483bd937b81484c14321c0c7d22 (diff) | |
download | klee-afb9326f7437c9eeaa2617c589312263bc7a14ba.tar.gz |
Merge pull request #761 from ccadar/misc
Silenced some warnings about unused variables when assertions are dis…
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/CompressionStream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/CompressionStream.cpp b/lib/Support/CompressionStream.cpp index 94f0bd18..2e6df113 100644 --- a/lib/Support/CompressionStream.cpp +++ b/lib/Support/CompressionStream.cpp @@ -91,7 +91,7 @@ void compressed_fd_ostream::write_impl(const char *Ptr, size_t Size) { // Check if there is still data to compress while (strm.avail_in != 0) { // compress data - int res = deflate(&strm, Z_NO_FLUSH); + int res = deflate(&strm, Z_NO_FLUSH); (void) res; assert(res == Z_OK); writeFullCompressedData(); } |