diff options
author | albert-github <albert.tests@gmail.com> | 2018-11-27 10:34:55 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-11-27 10:34:55 (GMT) |
commit | b6101af96fb793d9e9bdc0c34f0690545f3a1e56 (patch) | |
tree | 75537b0958a7d24c92b2b06ac64f3e20914faa6c /libmd5 | |
parent | 8c7b1352474e4da5024cfc3ecc25a486b1d4ef2a (diff) | |
download | Doxygen-b6101af96fb793d9e9bdc0c34f0690545f3a1e56.zip Doxygen-b6101af96fb793d9e9bdc0c34f0690545f3a1e56.tar.gz Doxygen-b6101af96fb793d9e9bdc0c34f0690545f3a1e56.tar.bz2 |
Keyword register (in code) is deprecated since C++11
The keyword `register` is deprecated since C++11:
- for the Darwin platform it was already filtered (-Wno-deprecated-register)
- CLan emits: 'register' storage class specifier is deprecated and incompatible with C++17 [-Wdeprecated-register]
Diffstat (limited to 'libmd5')
-rw-r--r-- | libmd5/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmd5/md5.c b/libmd5/md5.c index 5210d92..d0627ff 100644 --- a/libmd5/md5.c +++ b/libmd5/md5.c @@ -189,7 +189,7 @@ MD5Final(md5byte digest[16], struct MD5Context *ctx) void MD5Transform(UWORD32 buf[4], UWORD32 const in[16]) { - register UWORD32 a, b, c, d; + UWORD32 a, b, c, d; a = buf[0]; b = buf[1]; |