From b6163a5e7d7e72e6694216bfcb22e3dab1b12d7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 21 May 2025 09:24:05 +0200 Subject: [PATCH] missing overload --- STL_Extension/include/CGAL/Concurrent_compact_container.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/STL_Extension/include/CGAL/Concurrent_compact_container.h b/STL_Extension/include/CGAL/Concurrent_compact_container.h index f02a518db00..9d686046f45 100644 --- a/STL_Extension/include/CGAL/Concurrent_compact_container.h +++ b/STL_Extension/include/CGAL/Concurrent_compact_container.h @@ -109,6 +109,12 @@ namespace CCC_internal { e.set_erase_counter(c); } + template + static void set_erase_counter(Element* e, unsigned int c) + { + e->set_erase_counter(c); + } + template static void restore_erase_counter(Element* e, unsigned int c) {