mirror of https://github.com/CGAL/cgal
remove extra template keyword
This commit is contained in:
parent
6da7046307
commit
9911b4e23e
|
|
@ -156,9 +156,9 @@ public:
|
|||
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
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue