mirror of https://github.com/CGAL/cgal
Forbid the use of CGAL_MESH_3_USE_RELAXED_HEAP
That code using a Boost relaxed heap is buggy. Let's warn the developer that he/she must not use it.
This commit is contained in:
parent
6178c04cf1
commit
6be9fcab9d
|
|
@ -65,6 +65,9 @@
|
|||
|
||||
#include <boost/format.hpp>
|
||||
#ifdef CGAL_MESH_3_USE_RELAXED_HEAP
|
||||
# error This option CGAL_MESH_3_USE_RELAXED_HEAP is no longer supported
|
||||
// The reason is that the Boost relaxed heap does not ensure a strict order
|
||||
// of the priority queue.
|
||||
#include <boost/pending/relaxed_heap.hpp>
|
||||
#else
|
||||
#include <CGAL/Modifiable_priority_queue.h>
|
||||
|
|
|
|||
Loading…
Reference in New Issue