fix warning

This commit is contained in:
Sébastien Loriot 2025-07-03 09:46:32 +02:00
parent 1d9c84f9ef
commit 388632e0fa
1 changed files with 1 additions and 1 deletions

View File

@ -610,7 +610,7 @@ loop()
auto mPQ_clone = *mPQ;
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));
Cost_type tcost = get_data(*opt_th).cost();