Skip to content

Commit

Permalink
Merge pull request #908 from georust/frewsxcv-gat
Browse files Browse the repository at this point in the history
Simplify `CoordsIter` `trait` with GATs by removing an unneeded trait lifetime
  • Loading branch information
michaelkirk committed Sep 25, 2023
2 parents 44d6dc1 + b14e52e commit ccdbe19
Show file tree
Hide file tree
Showing 5 changed files with 135 additions and 110 deletions.
2 changes: 1 addition & 1 deletion geo/src/algorithm/convex_hull/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ use crate::utils::lex_cmp;
impl<'a, T, G> ConvexHull<'a, T> for G
where
T: GeoNum,
G: CoordsIter<'a, Scalar = T>,
G: CoordsIter<Scalar = T>,
{
type Scalar = T;

Expand Down

0 comments on commit ccdbe19

Please sign in to comment.