Skip to content

Commit

Permalink
Fix implicit lifetime for Rust 1.78
Browse files Browse the repository at this point in the history
  • Loading branch information
sbihel committed May 2, 2024
1 parent 90d53f7 commit c1935a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions layouts/src/matching.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ where

impl<'a, 'p, R, D, Q> Matching<'a, 'p, R, D, Q>
where
R: Clone + PartialEq,
R: Clone + PartialEq + 'a,
D: PatternMatchingDataset<Resource = R>,
Q: Clone + Iterator<Item = PatternRefQuad<'p, R>>,
{
Expand All @@ -97,7 +97,7 @@ where

impl<'a, 'p, R, D, Q> Iterator for Matching<'a, 'p, R, D, Q>
where
R: Clone + PartialEq,
R: Clone + PartialEq + 'a,
D: PatternMatchingDataset<Resource = R>,
Q: Clone + Iterator<Item = PatternRefQuad<'p, R>>,
{
Expand Down

0 comments on commit c1935a2

Please sign in to comment.