From 5ff923bcfb4a65e96e3379fca68a4ea879cfb83c Mon Sep 17 00:00:00 2001 From: Clement Jamin Date: Wed, 2 Oct 2013 10:48:59 +0200 Subject: [PATCH] Bug fix: use the right namespace (CCC_internal) --- STL_Extension/include/CGAL/Concurrent_compact_container.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/STL_Extension/include/CGAL/Concurrent_compact_container.h b/STL_Extension/include/CGAL/Concurrent_compact_container.h index 0ca2b08da19..3444164b71c 100644 --- a/STL_Extension/include/CGAL/Concurrent_compact_container.h +++ b/STL_Extension/include/CGAL/Concurrent_compact_container.h @@ -407,8 +407,8 @@ public: private: void erase(iterator x, FreeList * fl) { - typedef internal::Erase_counter_strategy< - internal::has_increment_erase_counter::value> EraseCounterStrategy; + typedef CCC_internal::Erase_counter_strategy< + CCC_internal::has_increment_erase_counter::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:: allocate_new_block(FreeList * fl) { - typedef internal::Erase_counter_strategy< - internal::has_increment_erase_counter::value> EraseCounterStrategy; + typedef CCC_internal::Erase_counter_strategy< + CCC_internal::has_increment_erase_counter::value> EraseCounterStrategy; size_type old_block_size; pointer new_block;