Skip to content

Commit

Permalink
Fixes by clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
magnesj committed Mar 2, 2024
1 parent 818c5c0 commit 5d640b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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() );
Expand Down

0 comments on commit 5d640b9

Please sign in to comment.