From 77f870abb33819bc87d52702b84e89071b61e623 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 30 May 2016 08:35:58 -0400 Subject: [PATCH] Cleared "C4101: unreferenced local variable" under Visual Studio --- blake2.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/blake2.cpp b/blake2.cpp index ff600aef..96b5e73b 100644 --- a/blake2.cpp +++ b/blake2.cpp @@ -496,7 +496,6 @@ void BLAKE2_CXX_Compress64(const byte* input, BLAKE2_State& state) } while(0) word64 m[16], v[16]; - unsigned int i; GetBlock get1(input); get1(m[0])(m[1])(m[2])(m[3])(m[4])(m[5])(m[6])(m[7])(m[8])(m[9])(m[10])(m[11])(m[12])(m[13])(m[14])(m[15]);