fix assertion

This commit is contained in:
Sébastien Loriot 2022-08-16 17:23:07 +02:00
parent 601bd64dc8
commit 4143d143e0
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ public:
void remove(const value_type& x)
{
group* a = &index_to_group[get(id, x) / log_n];
CGAL_assertion(groups[get(id, x)]);
CGAL_assertion(static_cast< bool >(groups[get(id, x)]));
a->value = x;
a->kind = smallest_key;
promote(a);