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

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

This commit is contained in:
Roy Ivy III 2020-05-27 11:50:23 -05:00
parent 3129c8fbe5
commit 131bca3d53

View file

@ -143,7 +143,7 @@ struct SplitControl {
trait Splitter {
// Consume the current_line and return the consumed string
fn consume(&mut self, &mut SplitControl) -> String;
fn consume(&mut self, _: &mut SplitControl) -> String;
}
struct LineSplitter {