From 22dd3d17192560cb9fff4a064ce9cbc236caa655 Mon Sep 17 00:00:00 2001 From: Garux Date: Mon, 25 Jan 2021 01:09:21 +0300 Subject: [PATCH] fix warning --- libs/container/hashfunc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/container/hashfunc.h b/libs/container/hashfunc.h index 83d3e664..1362e5ac 100644 --- a/libs/container/hashfunc.h +++ b/libs/container/hashfunc.h @@ -182,7 +182,7 @@ inline ub4 hash( const UB1Traits& ub1traits, const UB4x1Traits& ub4x1traits ){ - register ub4 a,b,c,len; + ub4 a,b,c,len; /* Set up the internal state */ len = length; @@ -240,7 +240,7 @@ inline ub4 hash2( ub4 initval, /* the previous hash, or an arbitrary value */ const UB4Traits& ub4traits ){ - register ub4 a,b,c,len; + ub4 a,b,c,len; /* Set up the internal state */ len = length;