Fix a large number of warnings

This commit is contained in:
Thinkofname 2016-04-16 21:43:41 +01:00
parent 8f976b3014
commit 03e6af8cb9
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ impl Serializable for () {
fn read_from<R: io::Read>(_: &mut R) -> Result<(), Error> {
Result::Ok(())
}
fn write_to<W: io::Write>(&self, buf: &mut W) -> Result<(), Error> {
fn write_to<W: io::Write>(&self, _: &mut W) -> Result<(), Error> {
Result::Ok(())
}
}