diff --git a/ApplicationCode/Application/Tools/RiaInterpolationTools.cpp b/ApplicationCode/Application/Tools/RiaInterpolationTools.cpp index 6b8bb86f55..354da32e74 100644 --- a/ApplicationCode/Application/Tools/RiaInterpolationTools.cpp +++ b/ApplicationCode/Application/Tools/RiaInterpolationTools.cpp @@ -194,7 +194,7 @@ void RiaInterpolationTools::interpolateMissingValues( const std::vector& { // 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( y.size() ) ) {