diff --git a/others/fast_integer_input.cpp b/others/fast_integer_input.cpp index 87963c9ad..c929305c7 100644 --- a/others/fast_integer_input.cpp +++ b/others/fast_integer_input.cpp @@ -11,7 +11,7 @@ void fastinput(int *number) { // variable to indicate sign of input integer bool negative = false; - register int c; + int c; *number = 0; // extract current character from buffer