mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2024-11-09 23:29:44 +00:00
fixed warning with std::ignore about unused function result (#151)
fixed warning with std::ignore about unused function result
This commit is contained in:
parent
a81d0c2a17
commit
e03e359730
1 changed files with 1 additions and 1 deletions
2
main.cpp
2
main.cpp
|
@ -1011,7 +1011,7 @@ int main(int argc, char ** argv) {
|
||||||
if(params.use_color) printf(ANSI_BOLD ANSI_COLOR_GREEN);
|
if(params.use_color) printf(ANSI_BOLD ANSI_COLOR_GREEN);
|
||||||
if (scanf("%255[^\n]%n%*c", buf, &n_read) <= 0) {
|
if (scanf("%255[^\n]%n%*c", buf, &n_read) <= 0) {
|
||||||
// presumable empty line, consume the newline
|
// presumable empty line, consume the newline
|
||||||
scanf("%*c");
|
std::ignore = scanf("%*c");
|
||||||
n_read=0;
|
n_read=0;
|
||||||
}
|
}
|
||||||
if(params.use_color) printf(ANSI_COLOR_RESET);
|
if(params.use_color) printf(ANSI_COLOR_RESET);
|
||||||
|
|
Loading…
Reference in a new issue