From cd3e331e12b1e41d61305eb19bb09cf4acfa4b10 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 9 Sep 2020 06:43:23 +0000 Subject: [PATCH] Fixes by clang-format --- ApplicationCode/Application/Tools/RiaInterpolationTools.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() ) ) {