Fixes by clang-format

This commit is contained in:
github-actions[bot] 2020-09-09 06:43:23 +00:00 committed by Magne Sjaastad
parent 839a049804
commit cd3e331e12

View File

@ -194,7 +194,7 @@ void RiaInterpolationTools::interpolateMissingValues( const std::vector<double>&
{
// The last value is inf: extrapolate from two last data points
int prevSetIndex2 = findPreviousDataPoint( y, prevSetIndex - 1 );
index = extrapolateRange( index, (int) y.size(), prevSetIndex2, prevSetIndex, x, y );
index = extrapolateRange( index, (int)y.size(), prevSetIndex2, prevSetIndex, x, y );
}
else if ( nextSetIndex != static_cast<int>( y.size() ) )
{