From 3129c8fbe5771365ccb146bc6a4780190c8becea Mon Sep 17 00:00:00 2001 From: Roy Ivy III Date: Wed, 27 May 2020 11:50:04 -0500 Subject: [PATCH] fix/od ~ fix 'edition=2018' trait specification error --- src/uu/od/src/parse_inputs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/od/src/parse_inputs.rs b/src/uu/od/src/parse_inputs.rs index 21da091e1..242a3abfd 100644 --- a/src/uu/od/src/parse_inputs.rs +++ b/src/uu/od/src/parse_inputs.rs @@ -5,7 +5,7 @@ pub trait CommandLineOpts { /// returns all commandline parameters which do not belong to an option. fn inputs(&self) -> Vec; /// tests if any of the specified options is present. - fn opts_present(&self, &[&str]) -> bool; + fn opts_present(&self, _: &[&str]) -> bool; } /// Implementation for `getopts`