mirror of https://github.com/CGAL/cgal
Improved readability of Regular/Delaunay_triangulation_3
The quest continues
This commit is contained in:
parent
9edd4194ba
commit
5c9e18a2f6
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -201,8 +201,8 @@ class Triangulation_3_base<Parallel_tag, Lock_data_structure_>
|
||||||
public:
|
public:
|
||||||
// If Lock_data_structure_ = Default => use Spatial_lock_grid_3
|
// If Lock_data_structure_ = Default => use Spatial_lock_grid_3
|
||||||
typedef typename Default::Get<
|
typedef typename Default::Get<
|
||||||
Lock_data_structure_, Spatial_lock_grid_3<Tag_priority_blocking> >
|
Lock_data_structure_,
|
||||||
::type Lock_data_structure;
|
Spatial_lock_grid_3<Tag_priority_blocking> >::type Lock_data_structure;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
Triangulation_3_base()
|
Triangulation_3_base()
|
||||||
|
|
@ -237,9 +237,9 @@ protected:
|
||||||
struct Vertex_handle_unique_hash_map_generator
|
struct Vertex_handle_unique_hash_map_generator
|
||||||
{
|
{
|
||||||
typedef Unique_hash_map<Vertex_handle,
|
typedef Unique_hash_map<Vertex_handle,
|
||||||
Vertex_handle,
|
Vertex_handle,
|
||||||
Handle_hash_function,
|
Handle_hash_function,
|
||||||
tbb::scalable_allocator<Vertex_handle> > type;
|
tbb::scalable_allocator<Vertex_handle> > type;
|
||||||
};
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue