Merge pull request #356 from chfast/patch-1

Replace assert with void instruction
pull/357/head
Jeffrey Walton 2017-01-04 22:28:59 -05:00 committed by GitHub
commit bccc6443c4
1 changed files with 1 additions and 1 deletions

2
trap.h
View File

@ -89,7 +89,7 @@
// Remove CRYPTOPP_ASSERT in non-debug builds.
// Can't use CRYPTOPP_UNUSED due to circular dependency
#ifndef CRYPTOPP_ASSERT
# define CRYPTOPP_ASSERT(exp)
# define CRYPTOPP_ASSERT(exp) (void)0
#endif
NAMESPACE_BEGIN(CryptoPP)