Minor code cleanup

This commit is contained in:
Jon Jenssen
2024-01-03 12:43:54 +01:00
committed by jonjenssen
parent 50a766591b
commit 62c7007654
2 changed files with 3 additions and 5 deletions

View File

@@ -58,7 +58,7 @@ bool RifGeoMechReaderInterface::isTimeStepIncludedByFilter( int timeStepIndex )
for ( auto i : m_fileTimeStepIndices )
{
if ( i == static_cast<size_t>( timeStepIndex ) )
if ( i == timeStepIndex )
{
return true;
}