From 3dbf6e785cfd5aca1b83482f51cfad620c0b9cc0 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 23 Jan 2017 21:33:23 -0500 Subject: [PATCH] Removed debug instrumentation --- integer.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/integer.cpp b/integer.cpp index 9aa67826..8ab235a4 100644 --- a/integer.cpp +++ b/integer.cpp @@ -353,17 +353,7 @@ private: class Word { public: - // Converity finding on default ctor. We've isntrumented the code, - // and cannot uncover a case where it affects a result. -#if defined(__COVERITY__) Word() : m_whole(0) {} -#elif CRYPTOPP_DEBUG - // Repeating pattern of 1010 for debug builds to break things... - Word() : m_whole(0) {memset(&m_whole, 0xaa, sizeof(m_whole));} -#else - Word() {} -#endif - Word(word value) : m_whole(value) {} Word(hword low, hword high) : m_whole(low | (word(high) << (WORD_BITS/2))) {}