Cleared unused variable warning under MSC. Whitespace cleanup

pull/174/head
Jeffrey Walton 2016-05-15 01:32:35 -04:00
parent ad4e954be5
commit c0a6c27cec
1 changed files with 117 additions and 118 deletions

View File

@ -502,7 +502,6 @@ void BLAKE2_CXX_Compress32(const byte* input, BLAKE2_State<word32, false>& state
} while(0) } while(0)
word32 m[16], v[16]; word32 m[16], v[16];
unsigned int i;
GetBlock<word32, LittleEndian, true> get1(input); GetBlock<word32, LittleEndian, true> 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]); 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]);