Fix some unused variable warnings
This commit is contained in:
parent
31b301219f
commit
3ee292021d
1 changed files with 2 additions and 2 deletions
|
|
@ -5,11 +5,11 @@ pub trait Remote {
|
|||
}
|
||||
|
||||
pub trait Remote1<T> {
|
||||
fn foo(&self, t: T) { }
|
||||
fn foo(&self, _t: T) { }
|
||||
}
|
||||
|
||||
pub trait Remote2<T, U> {
|
||||
fn foo(&self, t: T, u: U) { }
|
||||
fn foo(&self, _t: T, _u: U) { }
|
||||
}
|
||||
|
||||
pub struct Pair<T,U>(T,U);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue