Skip to content

Commit

Permalink
Additional minor code tidy (#823)
Browse files Browse the repository at this point in the history
  • Loading branch information
AngusJohnson committed Apr 27, 2024
1 parent cef6a10 commit 99a9706
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CPP/Clipper2Lib/include/clipper2/clipper.core.h
Original file line number Diff line number Diff line change
Expand Up @@ -143,13 +143,13 @@ namespace Clipper2Lib
}

template <typename T2>
explicit Point<T>(const Point<T2>& p)
explicit Point(const Point<T2>& p)
{
Init(p.x, p.y, p.z);
}

template <typename T2>
explicit Point<T>(const Point<T2>& p, int64_t z_)
explicit Point(const Point<T2>& p, int64_t z_)
{
Init(p.x, p.y, z_);
}
Expand Down

0 comments on commit 99a9706

Please sign in to comment.