summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/md5
diff options
context:
space:
mode:
authorMorten Johan Sørvig <morten.sorvig@digia.com>2014-03-31 12:20:01 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-04 01:29:35 +0200
commit078f83a761dae61b3f10f80eb330b9a39755d2ad (patch)
tree4f4e07d95209a35e8a1b6322e0745662e0f25c11 /src/3rdparty/md5
parentaf97b73d390e890523fc88e502e693fe29febfa5 (diff)
Compile: remove "register" keyword in MD5Transform
"register" is usually ignored by the compiler and is deprecated in C++11 [-Werror,-Wdeprecated-register] Change-Id: I3a10f2128e4a4574b2cd3861bddbbd4ba6a3683f Reviewed-by: Konstantin Ritt <ritt.ks@gmail.com>
Diffstat (limited to 'src/3rdparty/md5')
-rw-r--r--src/3rdparty/md5/md5.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/md5/md5.cpp b/src/3rdparty/md5/md5.cpp
index 16871e6626..cc69b56213 100644
--- a/src/3rdparty/md5/md5.cpp
+++ b/src/3rdparty/md5/md5.cpp
@@ -161,7 +161,7 @@ MD5Final(struct MD5Context *ctx, md5byte digest[16])
static 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];