Skip to content

Commit

Permalink
remove extra template keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
sloriot committed Oct 4, 2024
1 parent 6e18225 commit 499bcad
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@ struct Line_3_intersection_tester
Pl pl(pl0, pl1, pl2);
P pl3 = pl0 + FT(this->r.get_double()) * V(pl1 - pl0) + FT(this->r.get_double()) * V(pl1 - pl0);
if(pl.has_on(l1))
Base::template check_intersection(L(pl3, l1), pl, L(pl3, l1)); // both points on the plane
Base::check_intersection(L(pl3, l1), pl, L(pl3, l1)); // both points on the plane
else
Base::template check_intersection(L(pl3, l1), pl, pl3); // single point on the plane
Base::check_intersection(L(pl3, l1), pl, pl3); // single point on the plane

if(pl.oriented_side(l0) != pl.oriented_side(l1)) // l0 xor l1 on pl is fine
{
Expand Down

0 comments on commit 499bcad

Please sign in to comment.