mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-13 15:37:06 +08:00
fix: remove register key word from fast integer
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user