From 8f59d9af3598927cd83ac0582abc0a977395f049 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 19 Jul 2015 10:22:16 -0400 Subject: Cleared unused variable and function warnings --- zinflate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zinflate.cpp') diff --git a/zinflate.cpp b/zinflate.cpp index 4018e115..75175472 100644 --- a/zinflate.cpp +++ b/zinflate.cpp @@ -36,7 +36,7 @@ inline bool LowFirstBitReader::FillBuffer(unsigned int length) inline unsigned long LowFirstBitReader::PeekBits(unsigned int length) { bool result = FillBuffer(length); - assert(result); + assert(result); CRYPTOPP_UNUSED(result); return m_buffer & (((unsigned long)1 << length) - 1); } -- cgit v1.2.1