Fix rustc 1.32 build

This commit is contained in:
Graham Esau 2020-05-12 21:19:43 +01:00
parent 780c7286a6
commit 9d951b34ce

View file

@ -73,7 +73,7 @@ impl<'a> Field<'a> {
match &self.attrs.with { match &self.attrs.with {
None => self.ty, None => self.ty,
Some(WithAttr::Type(ty)) => ty, Some(WithAttr::Type(ty)) => ty,
Some(WithAttr::_Function(_)) => todo!(), Some(WithAttr::_Function(_)) => unimplemented!(), // TODO
} }
} }
} }