Remove uneeded assert

pull/174/head
Jeffrey Walton 2016-05-21 13:00:00 -04:00
parent 14fcf50ae0
commit 884f7fd4ac
1 changed files with 0 additions and 2 deletions

View File

@ -319,8 +319,6 @@ void BLAKE2_Base<W, T_64bit>::UncheckedSetKey(const byte *key, unsigned int leng
template <class W, bool T_64bit> template <class W, bool T_64bit>
BLAKE2_Base<W, T_64bit>::BLAKE2_Base() : m_state(), m_block(), m_digestSize(DIGESTSIZE), m_treeMode(false) BLAKE2_Base<W, T_64bit>::BLAKE2_Base() : m_state(), m_block(), m_digestSize(DIGESTSIZE), m_treeMode(false)
{ {
assert(digestSize <= DIGESTSIZE);
UncheckedSetKey(NULL, 0, g_nullNameValuePairs); UncheckedSetKey(NULL, 0, g_nullNameValuePairs);
Restart(); Restart();
} }