WIP: bugfix

This commit is contained in:
Matthias Koefferlein 2025-08-02 22:14:53 +02:00
parent c3ba0acc02
commit a224c11833
1 changed files with 1 additions and 1 deletions

View File

@ -553,7 +553,7 @@ MeasureNetEval::net_func () const
auto n = m_nets_per_cell_and_cluster_id->find (std::make_pair (m_cell_index, m_cluster_id));
if (n != m_nets_per_cell_and_cluster_id->end ()) {
return tl::Variant::make_variant_ref (n.operator-> ());
return tl::Variant::make_variant_ref (n->second);
} else {
return tl::Variant ();
}