Removed usage of register keyword

No more 'register storage class specifier is deprecated' warnings
This commit is contained in:
alexey.lysiuk 2016-02-27 15:03:44 +02:00
commit 3c044ebd5e
3 changed files with 6 additions and 6 deletions

View file

@ -166,7 +166,7 @@ void MD5Context::Final(BYTE digest[16])
void
MD5Transform(DWORD buf[4], const DWORD in[16])
{
register DWORD a, b, c, d;
DWORD a, b, c, d;
a = buf[0];
b = buf[1];