summaryrefslogtreecommitdiff
path: root/sha.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-08-03 06:17:22 -0400
committerJeffrey Walton <noloader@gmail.com>2018-08-03 06:17:22 -0400
commit8019362bd60615d7bc805b223f6c766910dd8baf (patch)
treeb465a46caf60ddaec1ffb3db7973bdbba64f16ca /sha.cpp
parent81a5429e5601956987a6113a4e8e527e46566e75 (diff)
downloadcryptopp-git-8019362bd60615d7bc805b223f6c766910dd8baf.tar.gz
Clear unused variable warnings under MSVC
Diffstat (limited to 'sha.cpp')
-rw-r--r--sha.cpp2
1 files changed, 1 insertions, 1 deletions
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));