mirror of https://github.com/CGAL/cgal
replace nullptr
This commit is contained in:
parent
08f6efc827
commit
282d5e8c7b
|
|
@ -247,7 +247,7 @@ protected:
|
||||||
|
|
||||||
Point p1 = lcc->point(dh);
|
Point p1 = lcc->point(dh);
|
||||||
Dart_const_handle d2 = lcc->other_extremity(dh);
|
Dart_const_handle d2 = lcc->other_extremity(dh);
|
||||||
if (d2!=nullptr)
|
if (d2!=lcc->null_handle)
|
||||||
{
|
{
|
||||||
if (m_drawing_functor.colored_edge(*lcc, dh))
|
if (m_drawing_functor.colored_edge(*lcc, dh))
|
||||||
{ add_segment(p1, lcc->point(d2), m_drawing_functor.edge_color(*lcc, dh)); }
|
{ add_segment(p1, lcc->point(d2), m_drawing_functor.edge_color(*lcc, dh)); }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue