mirror of https://github.com/CGAL/cgal
Bug fix: use the right namespace (CCC_internal)
This commit is contained in:
parent
ebd058e192
commit
5ff923bcfb
|
|
@ -407,8 +407,8 @@ public:
|
|||
private:
|
||||
void erase(iterator x, FreeList * fl)
|
||||
{
|
||||
typedef internal::Erase_counter_strategy<
|
||||
internal::has_increment_erase_counter<T>::value> EraseCounterStrategy;
|
||||
typedef CCC_internal::Erase_counter_strategy<
|
||||
CCC_internal::has_increment_erase_counter<T>::value> EraseCounterStrategy;
|
||||
|
||||
CGAL_precondition(type(x) == USED);
|
||||
EraseCounterStrategy::increment_erase_counter(*x);
|
||||
|
|
@ -721,8 +721,8 @@ template < class T, class Allocator >
|
|||
void Concurrent_compact_container<T, Allocator>::
|
||||
allocate_new_block(FreeList * fl)
|
||||
{
|
||||
typedef internal::Erase_counter_strategy<
|
||||
internal::has_increment_erase_counter<T>::value> EraseCounterStrategy;
|
||||
typedef CCC_internal::Erase_counter_strategy<
|
||||
CCC_internal::has_increment_erase_counter<T>::value> EraseCounterStrategy;
|
||||
|
||||
size_type old_block_size;
|
||||
pointer new_block;
|
||||
|
|
|
|||
Loading…
Reference in New Issue