Skip to content

Commit cf96959

Browse files
fix: remove register key word from fast integer
1 parent 01cb061 commit cf96959

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

others/fast_integer_input.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
void fastinput(int *number) {
1212
// variable to indicate sign of input integer
1313
bool negative = false;
14-
register int c;
14+
int c;
1515
*number = 0;
1616

1717
// extract current character from buffer

0 commit comments

Comments
 (0)