mirror of https://github.com/CGAL/cgal
fix wrong value
This commit is contained in:
parent
5ec5ad6c8e
commit
76aeb96682
|
|
@ -752,7 +752,7 @@ public:
|
||||||
if(m_p_search_tree != nullptr)
|
if(m_p_search_tree != nullptr)
|
||||||
{
|
{
|
||||||
#ifdef CGAL_HAS_THREADS
|
#ifdef CGAL_HAS_THREADS
|
||||||
m_atomic_search_tree_constructed.store(false, std::memory_order_release); // in case build_kd_tree() is triggered by a call to best_hint()
|
m_atomic_search_tree_constructed.store(true, std::memory_order_release); // in case build_kd_tree() is triggered by a call to best_hint()
|
||||||
#else
|
#else
|
||||||
m_search_tree_constructed = true;
|
m_search_tree_constructed = true;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue