1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

fix/od ~ fix 'edition=2018' trait specification error

This commit is contained in:
Roy Ivy III 2020-05-27 11:50:04 -05:00
parent d4aa3a2231
commit 3129c8fbe5

View file

@ -5,7 +5,7 @@ pub trait CommandLineOpts {
/// returns all commandline parameters which do not belong to an option.
fn inputs(&self) -> Vec<String>;
/// tests if any of the specified options is present.
fn opts_present(&self, &[&str]) -> bool;
fn opts_present(&self, _: &[&str]) -> bool;
}
/// Implementation for `getopts`