mirror of https://github.com/CGAL/cgal
Minor fix: "Base" doesn't need to be public.
This commit is contained in:
parent
13b7061b0b
commit
2796e63b86
|
|
@ -425,10 +425,10 @@ class Spatial_grid_lock_data_structure_3<Tag_non_blocking_with_atomics>
|
|||
: public Spatial_grid_lock_data_structure_base_3<
|
||||
Spatial_grid_lock_data_structure_3<Tag_non_blocking_with_atomics> >
|
||||
{
|
||||
public:
|
||||
typedef Spatial_grid_lock_data_structure_base_3<
|
||||
Spatial_grid_lock_data_structure_3<Tag_non_blocking_with_atomics> > Base;
|
||||
|
||||
public:
|
||||
// Constructors
|
||||
Spatial_grid_lock_data_structure_3(const Bbox_3 &bbox,
|
||||
int num_grid_cells_per_axis)
|
||||
|
|
@ -486,10 +486,10 @@ class Spatial_grid_lock_data_structure_3<Tag_priority_blocking_with_atomics>
|
|||
: public Spatial_grid_lock_data_structure_base_3<
|
||||
Spatial_grid_lock_data_structure_3<Tag_priority_blocking_with_atomics> >
|
||||
{
|
||||
public:
|
||||
typedef Spatial_grid_lock_data_structure_base_3<
|
||||
Spatial_grid_lock_data_structure_3<Tag_priority_blocking_with_atomics> > Base;
|
||||
|
||||
public:
|
||||
// Constructors
|
||||
|
||||
Spatial_grid_lock_data_structure_3(const Bbox_3 &bbox,
|
||||
|
|
@ -592,10 +592,10 @@ class Spatial_grid_lock_data_structure_3<Tag_non_blocking_with_mutexes>
|
|||
: public Spatial_grid_lock_data_structure_base_3<
|
||||
Spatial_grid_lock_data_structure_3<Tag_non_blocking_with_mutexes> >
|
||||
{
|
||||
public:
|
||||
typedef Spatial_grid_lock_data_structure_base_3<
|
||||
Spatial_grid_lock_data_structure_3<Tag_non_blocking_with_mutexes> > Base;
|
||||
|
||||
public:
|
||||
// Constructors
|
||||
Spatial_grid_lock_data_structure_3(const Bbox_3 &bbox,
|
||||
int num_grid_cells_per_axis)
|
||||
|
|
|
|||
Loading…
Reference in New Issue