Skip to content

Commit 4d32009

Browse files
committed
'register' storage class specifier is deprecated [-Wdeprecated-register]
1 parent 0b6078b commit 4d32009

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clutils/sc_hash.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ struct Element * SC_HASHsearch( Hash_TableP table, const struct Element * item,
294294

295295
Address SC_HASHhash( char * Key, Hash_TableP table ) {
296296
Address h, address;
297-
register unsigned char * k = ( unsigned char * )Key;
297+
unsigned char * k = ( unsigned char * )Key;
298298

299299
h = 0;
300300
/*

0 commit comments

Comments
 (0)