Fixes by clang-tidy

This commit is contained in:
magnesj 2024-03-02 02:03:37 +00:00 committed by Magne Sjaastad
parent 818c5c0f9c
commit 5d640b91d2

View File

@ -59,7 +59,7 @@ std::vector<RimPolygonInView*> RimPolygonInViewCollection::visiblePolygonsInView
for ( auto coll : m_collectionsInView )
{
if ( coll->isChecked() == false ) continue;
if ( !coll->isChecked() ) continue;
auto other = coll->visiblePolygonsInView();
polys.insert( polys.end(), other.begin(), other.end() );