Diffstat (limited to 'src/build/builders/core/bool.rs')
| -rw-r--r-- | src/build/builders/core/bool.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build/builders/core/bool.rs b/src/build/builders/core/bool.rs index de1c288..2fa41cc 100644 --- a/src/build/builders/core/bool.rs +++ b/src/build/builders/core/bool.rs @@ -4,9 +4,9 @@ use effectful::environment::Environment; macro_rules! value_builder { [$($ty:ty),*] => { - $(impl<'lt, 'ctx, M, E: Environment> crate::Build<'lt, 'ctx, M, E> for $ty + $(impl<'src, M, E: Environment> crate::Build<'src, M, E> for $ty where - ValueBuilder<$ty, Cloneable, E>: Builder<'lt, 'ctx, E, Value = Self>, + ValueBuilder<$ty, Cloneable, E>: Builder<'src, E, Value = Self>, { type Builder = ValueBuilder<$ty, Cloneable, E>; })* |