From be8c3faa55e7065b3c1650cb65a676dbd43be1d8 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Mon, 10 Jul 2017 11:13:10 +0200 Subject: [PATCH] arcfour: register keyword is deprecated now --- src/arcfour.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arcfour.h b/src/arcfour.h index 758e064..b17641e 100644 --- a/src/arcfour.h +++ b/src/arcfour.h @@ -71,7 +71,7 @@ public: I = (I + 1) & mask; J = (J + S[I]) & mask; - register inttype t; + inttype t; t = S[J]; S[J] = S[I]; S[I] = t;