removed unused param

[SVN r28195]
This commit is contained in:
Jonathan Turkanis
2005-04-13 04:26:46 +00:00
parent fdcd9b1d33
commit 9a6791adda

View File

@@ -358,7 +358,7 @@ zlib_decompressor_impl<Alloc>::zlib_decompressor_impl(int window_bits)
template<typename Alloc>
bool zlib_decompressor_impl<Alloc>::filter
( const char*& src_begin, const char* src_end,
char*& dest_begin, char* dest_end, bool flush )
char*& dest_begin, char* dest_end, bool /* flush */ )
{
before(src_begin, src_end, dest_begin, dest_end);
int result = inflate(zlib::no_flush);