mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-14 01:32:07 +08:00
Merge pull request #687 from jhasse/patch-1
Silence warning "value stored to rv is never read"
This commit is contained in:
commit
d921a9649c
@ -8,6 +8,7 @@ void prepare_logdir()
|
|||||||
system("del /F /Q logs\\*");
|
system("del /F /Q logs\\*");
|
||||||
#else
|
#else
|
||||||
auto rv = system("mkdir -p logs");
|
auto rv = system("mkdir -p logs");
|
||||||
|
(void)rv;
|
||||||
rv = system("rm -f logs/*");
|
rv = system("rm -f logs/*");
|
||||||
(void)rv;
|
(void)rv;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user