Can you please turn
if (!m_tempScopes.contains(scope)) { m_tempScopes.insert(scope); }
into just m_tempScopes.insert(scope);
It's a QSet after all, inserting won't produce a duplicate anyway
« Back to merge proposal
Can you please turn
if (!m_tempScopes. contains( scope)) { .insert( scope);
m_tempScopes
}
into just .insert( scope);
m_tempScopes
It's a QSet after all, inserting won't produce a duplicate anyway