fixed warning with std::ignore about unused function result

This commit is contained in:
Justin 2023-03-15 02:37:01 +00:00
parent 47857e564c
commit a4fb5a9719

View file

@ -1003,7 +1003,7 @@ int main(int argc, char ** argv) {
if(params.use_color) printf(ANSI_BOLD ANSI_COLOR_GREEN);
if (scanf("%255[^\n]%n%*c", buf, &n_read) <= 0) {
// presumable empty line, consume the newline
scanf("%*c");
std::ignore = scanf("%*c");
n_read=0;
}
if(params.use_color) printf(ANSI_COLOR_RESET);