You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The macros need to be updated due to the breaking changes, but I am having trouble figuring out what the proper changes are.
One breaking change is the requirement for a separator between the multiplicative matcher fragment and the fragment before it per RFC 550. My proposal for fixing this is to change for example
($context:ident, $cb:ty $(, $t:ident)*) => ...
to
($context:ident, $cb:ty, $($t:ident),*) => ...
requiring an extra comma at some call sites.
Another breaking change is caused by the changes to closures. I can't figure out how to update impl_callable to handle the new syntax.
Conrod is not currently building due to breaking changes released with the alpha.
The text was updated successfully, but these errors were encountered: