Prefix unused variables with underscore

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
embed
Matthias Beyer 2019-07-17 19:35:05 +02:00 committed by Manos Pitsidianakis
parent 092f3694d2
commit 02bfda5eed
Signed by: Manos Pitsidianakis
GPG Key ID: 73627C2F690DF710
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ trait ListingTrait {
fn set_coordinates(&mut self, _: (usize, usize, Option<EnvelopeHash>));
fn draw_list(&mut self, grid: &mut CellBuffer, area: Area, context: &mut Context);
fn highlight_line(&mut self, grid: &mut CellBuffer, area: Area, idx: usize, context: &Context);
fn filter(&mut self, filter_term: &str, context: &Context) {}
fn filter(&mut self, _filter_term: &str, _context: &Context) {}
}
#[derive(Debug)]