mirror of
https://github.com/OPM/ResInsight.git
synced 2024-12-29 10:21:54 -06:00
Fixes by clang-tidy
This commit is contained in:
parent
818c5c0f9c
commit
5d640b91d2
@ -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() );
|
||||
|
Loading…
Reference in New Issue
Block a user