From 20b47c00dfb7e74bffcd65275bcc248de958b171 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Mon, 17 Oct 2016 15:13:47 +0200 Subject: [PATCH] no need to make an allocator a static data member --- SearchStructures/include/CGAL/Segment_tree_d.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SearchStructures/include/CGAL/Segment_tree_d.h b/SearchStructures/include/CGAL/Segment_tree_d.h index e10eaa18d5e..7fcc1208a4e 100644 --- a/SearchStructures/include/CGAL/Segment_tree_d.h +++ b/SearchStructures/include/CGAL/Segment_tree_d.h @@ -103,7 +103,7 @@ protected: typedef Segment_tree_node Segment_tree_node_t; typedef Segment_tree_node *link_type; - static std::allocator alloc; + std::allocator alloc; C_Interface m_interface; bool is_built;