From e5755629e6e20972bcd5fdbd7eb77afd4d6cc44e Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 5 Oct 2019 11:44:49 +0100 Subject: [PATCH] Fix deprecation warning about bare trait object syntax --- src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error.rs b/src/error.rs index bc9355d..ec61d8a 100644 --- a/src/error.rs +++ b/src/error.rs @@ -15,7 +15,7 @@ pub enum Error { UnconsumedInput(String), /// The string is the input at which the error was encountered. ParsingError(String, ParsingErrorKind), - PeParsingError(PathBuf, Box), + PeParsingError(PathBuf, Box), IoError(PathBuf, io::Error), }