From d128111dd938589a7ddd611f73ab52da6d4f0fe4 Mon Sep 17 00:00:00 2001 From: Caio Date: Thu, 1 Aug 2024 17:51:44 -0300 Subject: [PATCH] Fix type bound --- cl-aux/src/traits/dyn_contig_coll.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cl-aux/src/traits/dyn_contig_coll.rs b/cl-aux/src/traits/dyn_contig_coll.rs index 4fb0e71..3b695db 100644 --- a/cl-aux/src/traits/dyn_contig_coll.rs +++ b/cl-aux/src/traits/dyn_contig_coll.rs @@ -30,7 +30,7 @@ pub trait DynContigColl: + crate::Extend + Push + Truncate - + WithCapacity + + WithCapacity { } @@ -44,6 +44,6 @@ impl DynContigColl for U where + crate::Extend + Push + Truncate - + WithCapacity + + WithCapacity { }