From cf96959b9567468da3b405655073cabe6609adfb Mon Sep 17 00:00:00 2001 From: realstealthninja <68815218+realstealthninja@users.noreply.github.com> Date: Tue, 1 Oct 2024 22:11:40 +0530 Subject: [PATCH] fix: remove register key word from fast integer --- others/fast_integer_input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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