mirror of https://github.com/CGAL/cgal
fix warning
This commit is contained in:
parent
1d9c84f9ef
commit
388632e0fa
|
|
@ -610,7 +610,7 @@ loop()
|
||||||
|
|
||||||
auto mPQ_clone = *mPQ;
|
auto mPQ_clone = *mPQ;
|
||||||
std::optional<halfedge_descriptor> opt_th;
|
std::optional<halfedge_descriptor> opt_th;
|
||||||
while(opt_th = mPQ_clone.extract_top())
|
while((opt_th = mPQ_clone.extract_top()))
|
||||||
{
|
{
|
||||||
CGAL_SMS_TRACE_IMPL("\t" + edge_to_string(*opt_th));
|
CGAL_SMS_TRACE_IMPL("\t" + edge_to_string(*opt_th));
|
||||||
Cost_type tcost = get_data(*opt_th).cost();
|
Cost_type tcost = get_data(*opt_th).cost();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue