Silence deprecation warnings by casting

This commit is contained in:
Mathijs van de Nes 2015-03-19 14:32:49 +01:00
parent da87ac43e9
commit 0f12de0388

View file

@ -34,7 +34,7 @@ impl ZipError
match *self
{
ZipError::Io(ref io_err) => {
("Io Error: ".to_string() + io_err.description()).into_cow()
("Io Error: ".to_string() + (io_err as &error::Error).description()).into_cow()
},
ZipError::InvalidArchive(msg) | ZipError::UnsupportedArchive(msg) => {
(self.description().to_string() + ": " + msg).into_cow()
@ -68,7 +68,7 @@ impl error::Error for ZipError
{
match *self
{
ZipError::Io(ref io_err) => io_err.description(),
ZipError::Io(ref io_err) => (io_err as &error::Error).description(),
ZipError::InvalidArchive(..) => "Invalid Zip archive",
ZipError::UnsupportedArchive(..) => "Unsupported Zip archive",
ZipError::FileNotFound => "Specified file not found in archive",