missing overload

This commit is contained in:
Sébastien Loriot 2025-05-21 09:24:05 +02:00
parent 2148806957
commit b6163a5e7d
1 changed files with 6 additions and 0 deletions

View File

@ -109,6 +109,12 @@ namespace CCC_internal {
e.set_erase_counter(c);
}
template <typename Element>
static void set_erase_counter(Element* e, unsigned int c)
{
e->set_erase_counter(c);
}
template <typename Element>
static void restore_erase_counter(Element* e, unsigned int c)
{