From 9b27d6b83fbfbdb40a1776a1d3910648609482c4 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 21 Sep 2016 21:16:58 -0400 Subject: [PATCH] Cleared Coverity finding CID 170382 (CONSTANT_EXPRESSION_RESULT) (Issue 298) --- idea.cpp | 2 -- 1 file changed, 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) \