Skip to content

Commit e03e359

Browse files
fixed warning with std::ignore about unused function result (#151)
fixed warning with std::ignore about unused function result
1 parent a81d0c2 commit e03e359

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1011,7 +1011,7 @@ int main(int argc, char ** argv) {
10111011
if(params.use_color) printf(ANSI_BOLD ANSI_COLOR_GREEN);
10121012
if (scanf("%255[^\n]%n%*c", buf, &n_read) <= 0) {
10131013
// presumable empty line, consume the newline
1014-
scanf("%*c");
1014+
std::ignore = scanf("%*c");
10151015
n_read=0;
10161016
}
10171017
if(params.use_color) printf(ANSI_COLOR_RESET);

0 commit comments

Comments
 (0)