summaryrefslogtreecommitdiff
path: root/idea.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'idea.cpp')
-rw-r--r--idea.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/idea.cpp b/idea.cpp
index e24ee4b5..d46ed39d 100644
--- a/idea.cpp
+++ b/idea.cpp
@@ -22,7 +22,7 @@ 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) \
{ \
- assert(b <= 0xffff); \
+ CRYPTOPP_ASSERT(b <= 0xffff); \
\
word32 p=(word32)low16(a)*b; \
\