Hello.
Could you please fix the Rust print_err!
macro so that we do not get a warning when using it, please?
The macro:
macro_rules! print_err {
($($arg:tt)*) => (
{
use std::io::Write;
writeln!(&mut ::std::io::stderr(), $($arg)*);
}
)
}
could be updated to:
macro_rules! print_err {
($($arg:tt)*) => (
{
use std::io::Write;
writeln!(&mut ::std::io::stderr(), $($arg)*).ok();
}
)
}
(added .ok()
at the end of the writeln!
line)
Thanks to fix it.
By the way, thanks for adding Rust!