Skip to content

Commit 507573b

Browse files
Fix size for tuple impl
Signed-off-by: Luca Della Vedova <[email protected]>
1 parent bbfb1ad commit 507573b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/buffer/bufferable.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ macro_rules! impl_bufferable_for_tuple {
9494
}
9595
}
9696

97-
// Implements the `Bufferable` trait for all tuples between size 2 and 15
97+
// Implements the `Bufferable` trait for all tuples between size 2 and 12
9898
// (inclusive) made of types that implement `Bufferable`
99-
all_tuples!(impl_bufferable_for_tuple, 2, 15, T);
99+
all_tuples!(impl_bufferable_for_tuple, 2, 12, T);
100100

101101
impl<T: Bufferable, const N: usize> Bufferable for [T; N] {
102102
type BufferType = [T::BufferType; N];

0 commit comments

Comments
 (0)