mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#10367 Janitor: Remove unneccessary 'this' pointers
This commit is contained in:
@@ -112,9 +112,9 @@ bool RiuPickItemInfo::operator<( const RiuPickItemInfo& other ) const
|
||||
{
|
||||
return m_distanceAlongRay < other.distanceAlongRay();
|
||||
}
|
||||
else if ( this->polygonOffsetUnit() != other.polygonOffsetUnit() )
|
||||
else if ( polygonOffsetUnit() != other.polygonOffsetUnit() )
|
||||
{
|
||||
return this->polygonOffsetUnit() < other.polygonOffsetUnit();
|
||||
return polygonOffsetUnit() < other.polygonOffsetUnit();
|
||||
}
|
||||
else if ( m_faceIdx != other.faceIdx() )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user