From 8019362bd60615d7bc805b223f6c766910dd8baf Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 3 Aug 2018 06:17:22 -0400 Subject: Clear unused variable warnings under MSVC --- sha.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sha.cpp') diff --git a/sha.cpp b/sha.cpp index 951d7705..d56ef60d 100644 --- a/sha.cpp +++ b/sha.cpp @@ -1186,7 +1186,7 @@ void SHA512_HashBlock_CXX(word64 *state, const word64 *data) CRYPTOPP_ASSERT(state); CRYPTOPP_ASSERT(data); - word64 W[16]={0}, D[16], T[8]; + word64 W[16]={0}, T[8]; /* Copy context->state[] to working vars */ std::memcpy(T, state, sizeof(T)); -- cgit v1.2.1