Skip to content

Commit 7b0f063

Browse files
committed
remove register keyword
1 parent 3e5dfda commit 7b0f063

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/fastq_utils/hash.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ int insere(hashtable table,ulong key,__ptr_t obj)
185185

186186
void free_hashtable(hashtable table)
187187
{
188-
register ulong i;
188+
ulong i;
189189
hashnode *n,*tmp;
190190
//fprintf(stderr,"free_hashtable\n");fflush(stderr);
191191
if (table==NULL) return;
@@ -203,7 +203,7 @@ void free_hashtable(hashtable table)
203203
}
204204
void reset_hashtable(hashtable table)
205205
{
206-
register ulong i;
206+
ulong i;
207207
hashnode *n,*tmp;
208208
//fprintf(stderr,"free_hashtable\n");fflush(stderr);
209209
if (table==NULL) return;

0 commit comments

Comments
 (0)