replace nullptr

This commit is contained in:
Guillaume Damiand 2022-04-15 12:43:30 +02:00
parent 08f6efc827
commit 282d5e8c7b
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ protected:
Point p1 = lcc->point(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))
{ add_segment(p1, lcc->point(d2), m_drawing_functor.edge_color(*lcc, dh)); }