From e75cb8dd8b0fe25e0766be2de0105a72625ec862 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 25 Jul 2015 06:15:53 -0400 Subject: [PATCH] Backed out commit 1dc875a44a2ef07fe9e86ac07d0dc70a4efb1fbd. MinGW complained "error: 'p0' was not declared in this scope". Thanks to Ilya Bizyaev for reporting --- integer.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/integer.cpp b/integer.cpp index 38006c84..6da90e7e 100644 --- a/integer.cpp +++ b/integer.cpp @@ -1053,10 +1053,8 @@ static word LinearMultiply(word *C, const word *A, word B, size_t N) #else #define Mul_Begin(n) \ Declare2Words(p) \ - CRYPTOPP_UNUSED(p##0), CRYPTOPP_UNUSED(p##1); \ word c; \ Declare2Words(d) \ - CRYPTOPP_UNUSED(d##0), CRYPTOPP_UNUSED(d##1); \ MultiplyWords(p, A[0], B[0]) \ c = LowWord(p); \ AssignWord(d, HighWord(p))