mirror of https://github.com/CGAL/cgal
no need to make an allocator a static data member
This commit is contained in:
parent
f4c2099e67
commit
20b47c00df
|
|
@ -103,7 +103,7 @@ protected:
|
||||||
typedef Segment_tree_node<C_Data,C_Window,C_Interface> Segment_tree_node_t;
|
typedef Segment_tree_node<C_Data,C_Window,C_Interface> Segment_tree_node_t;
|
||||||
typedef Segment_tree_node<C_Data,C_Window,C_Interface> *link_type;
|
typedef Segment_tree_node<C_Data,C_Window,C_Interface> *link_type;
|
||||||
|
|
||||||
static std::allocator<Segment_tree_node_t> alloc;
|
std::allocator<Segment_tree_node_t> alloc;
|
||||||
|
|
||||||
C_Interface m_interface;
|
C_Interface m_interface;
|
||||||
bool is_built;
|
bool is_built;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue