no need to make an allocator a static data member

This commit is contained in:
Andreas Fabri 2016-10-17 15:13:47 +02:00
parent f4c2099e67
commit 20b47c00df
1 changed files with 1 additions and 1 deletions

View File

@ -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> *link_type;
static std::allocator<Segment_tree_node_t> alloc;
std::allocator<Segment_tree_node_t> alloc;
C_Interface m_interface;
bool is_built;