fix in Envelop_diagram_1

This commit is contained in:
Andreas Fabri 2018-04-20 09:06:59 +01:00
parent 5bc6d78f7f
commit 32a6b1b65c
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ public:
{
Vertex* v = vertex_alloc.allocate (1);
#ifdef CGAL_CXX11
std::allocator_traits<Vertex_allocator>::construct(vertex_alloc, p);
std::allocator_traits<Vertex_allocator>::construct(vertex_alloc, v, p);
#else
vertex_alloc.construct (v, Vertex(p));
#endif