Skip to content

Commit

Permalink
add R: ?Sized to lg vec2
Browse files Browse the repository at this point in the history
  • Loading branch information
ngtkana committed Dec 10, 2024
1 parent 848dbd4 commit 5ac8005
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions libs/lg/src/vec2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use std::iter;
pub fn vec2<'a, T, R, S>(title: &str, vec2: &'a S) -> Table
where
T: fmt::Debug + 'a,
R: ?Sized,
&'a R: Copy + IntoIterator<Item = &'a T> + 'a,
&'a S: Copy + IntoIterator<Item = &'a R>,
{
Expand Down

0 comments on commit 5ac8005

Please sign in to comment.