diff options
author | jkozlowski <mail@jakub-kozlowski.com> | 2018-09-24 17:23:16 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-09-25 01:59:57 +0200 |
commit | 1719ba1268c9b228a901f13db64298631d0b3540 (patch) | |
tree | ccca03236379003db22eef6a88a323be4c7c411e /src/codegen/error.rs | |
parent | ad2227b1e3acc6478fc2cc85d89ed5ac9f029cab (diff) |
Back out changes
Diffstat (limited to 'src/codegen/error.rs')
-rw-r--r-- | src/codegen/error.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/error.rs b/src/codegen/error.rs index 4b7f8827..ccb76c5b 100644 --- a/src/codegen/error.rs +++ b/src/codegen/error.rs @@ -14,7 +14,7 @@ pub enum Error { } impl fmt::Display for Error { - fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", error::Error::description(self)) } } |