Diffstat (limited to 'src/walk/walkers/core/bool.rs')
| -rw-r--r-- | src/walk/walkers/core/bool.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/walk/walkers/core/bool.rs b/src/walk/walkers/core/bool.rs index 171d016..24bb421 100644 --- a/src/walk/walkers/core/bool.rs +++ b/src/walk/walkers/core/bool.rs @@ -20,13 +20,13 @@ impl<'ctx> crate::Walk<'ctx> for bool { pub struct Walker<E>(bool, PhantomData<fn() -> E>); -impl<'ctx> crate::WalkerTypes<'ctx> for bool { +impl crate::WalkerTypes for bool { type Error = (); type Output = (); } -impl<'ctx, E: Effect<'ctx>> crate::WalkerTypes<'ctx> for Walker<E> { +impl<E> crate::WalkerTypes for Walker<E> { type Error = (); type Output = (); |