Fixes after comments by Laurent and Marc

This commit is contained in:
Andreas Fabri 2020-12-07 12:41:15 +00:00
parent 2e24249f13
commit 7314f83ac8
1 changed files with 2 additions and 2 deletions

View File

@ -327,9 +327,9 @@ public:
//compute intersection points in projected plane
//We know that none of the segment is degenerate
CGAL::cpp11::result_of<typename R::Intersect_2(Segment_2, Segment_2)>::type
typename CGAL::cpp11::result_of<typename R::Intersect_2(Segment_2, Segment_2)>::type
o = intersection(s1_2,s2_2);
if(! 0){
if(! o){
return boost::none;
}