summaryrefslogtreecommitdiff
path: root/idea.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-09-21 21:16:58 -0400
committerJeffrey Walton <noloader@gmail.com>2016-09-21 21:16:58 -0400
commit9b27d6b83fbfbdb40a1776a1d3910648609482c4 (patch)
treeee6597feed0351df6f09f0d73fb2d07ae02e037d /idea.cpp
parentb4f08a3fa17fe652b2e72e33ca18e48bf9972f5c (diff)
downloadcryptopp-git-9b27d6b83fbfbdb40a1776a1d3910648609482c4.tar.gz
Cleared Coverity finding CID 170382 (CONSTANT_EXPRESSION_RESULT) (Issue 298)
Diffstat (limited to 'idea.cpp')
-rw-r--r--idea.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/idea.cpp b/idea.cpp
index f13390d8..3f2c34a9 100644
--- a/idea.cpp
+++ b/idea.cpp
@@ -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) \