diff options
author | Jeffrey Walton <noloader@gmail.com> | 2016-09-21 21:16:58 -0400 |
---|---|---|
committer | Jeffrey Walton <noloader@gmail.com> | 2016-09-21 21:16:58 -0400 |
commit | 9b27d6b83fbfbdb40a1776a1d3910648609482c4 (patch) | |
tree | ee6597feed0351df6f09f0d73fb2d07ae02e037d /idea.cpp | |
parent | b4f08a3fa17fe652b2e72e33ca18e48bf9972f5c (diff) | |
download | cryptopp-git-9b27d6b83fbfbdb40a1776a1d3910648609482c4.tar.gz |
Cleared Coverity finding CID 170382 (CONSTANT_EXPRESSION_RESULT) (Issue 298)
Diffstat (limited to 'idea.cpp')
-rw-r--r-- | idea.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -17,8 +17,6 @@ CRYPTOPP_COMPILE_ASSERT(sizeof(IDEA::Word) >= 2); // should use an inline function but macros are still faster in MSVC 4.0
#define DirectMUL(a,b) \
{ \
- CRYPTOPP_ASSERT(b <= 0xffff); \
- \
word32 p=(word32)low16(a)*b; \
\
if (p) \
|