summaryrefslogtreecommitdiff
path: root/zinflate.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-07-19 10:22:16 -0400
committerJeffrey Walton <noloader@gmail.com>2015-07-19 10:22:16 -0400
commit8f59d9af3598927cd83ac0582abc0a977395f049 (patch)
treebae3021a30d906c7a3f951c5e684f942f0f7c9a9 /zinflate.cpp
parent41be55ca17b67718e72d5f54ca3ebe816e3031d9 (diff)
downloadcryptopp-git-8f59d9af3598927cd83ac0582abc0a977395f049.tar.gz
Cleared unused variable and function warnings
Diffstat (limited to 'zinflate.cpp')
-rw-r--r--zinflate.cpp2
1 files changed, 1 insertions, 1 deletions
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);
}