From 7253b2402eadf7262da0ff497d3fc87107fa7c2c Mon Sep 17 00:00:00 2001 From: timofey Date: Sat, 29 Jul 2023 09:30:20 +0000 Subject: [PATCH] remove `_Fctr` from `StackCompatible` bound --- src/rstd/collections/stack.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rstd/collections/stack.rs b/src/rstd/collections/stack.rs index 3512786..7d1be93 100644 --- a/src/rstd/collections/stack.rs +++ b/src/rstd/collections/stack.rs @@ -142,7 +142,7 @@ impl StackNodeFactory { impl<'a, Ctx: Context<'a>, F: Factory<'a, Ctx>> FactoryBase<'a, Ctx> for StackNodeFactory where - F::Mtbl: StackCompatible<'a, Ctx, _Fctr = F>, + F::Mtbl: StackCompatible<'a, Ctx>, { type Mtbl = StackNode<'a, Ctx, F::Mtbl>;