From e5df49fa547e3270b98919a95f527a9326be325f Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Mon, 25 Nov 2019 16:09:00 +0100 Subject: [PATCH] Replace a nullptr by NULL --- .../include/CGAL/Surface_sweep_2/Surface_sweep_2_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Surface_sweep_2/include/CGAL/Surface_sweep_2/Surface_sweep_2_impl.h b/Surface_sweep_2/include/CGAL/Surface_sweep_2/Surface_sweep_2_impl.h index 8afb7759435..f3529b99ceb 100644 --- a/Surface_sweep_2/include/CGAL/Surface_sweep_2/Surface_sweep_2_impl.h +++ b/Surface_sweep_2/include/CGAL/Surface_sweep_2/Surface_sweep_2_impl.h @@ -918,7 +918,7 @@ _create_overlapping_curve(const X_monotone_curve_2& overlap_cv, // Get the left end of overlap_cv. Event* left_event; - if (event_on_overlap!=nullptr) + if (event_on_overlap!=NULL) { CGAL_SS_PRINT_EVENT_INFO(event_on_overlap); CGAL_SS_PRINT_EOL();