arcfour: register keyword is deprecated now

This commit is contained in:
Mirek Kratochvil 2017-07-10 11:13:10 +02:00
parent ad40fbe5dc
commit be8c3faa55

View file

@ -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;