From d5fb51c3f339e977c55dbda837b80a07f61465e2 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <github@naumov.de> Date: Sat, 26 May 2018 12:29:23 +0200 Subject: [PATCH] [NL] Extrap; Remove unnecessary decltype. The original code issues a warning: type qualifiers ignored on cast result type since gcc-8.1. The cast is unnecessary because both operands of the comparison are unsined ints. --- NumLib/Extrapolation/LocalLinearLeastSquaresExtrapolator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NumLib/Extrapolation/LocalLinearLeastSquaresExtrapolator.cpp b/NumLib/Extrapolation/LocalLinearLeastSquaresExtrapolator.cpp index c7527be13b2..d38941f2059 100644 --- a/NumLib/Extrapolation/LocalLinearLeastSquaresExtrapolator.cpp +++ b/NumLib/Extrapolation/LocalLinearLeastSquaresExtrapolator.cpp @@ -163,7 +163,7 @@ void LocalLinearLeastSquaresExtrapolator::extrapolateElement( // number of integration points in the element const auto num_int_pts = num_values / num_components; - if (num_int_pts < static_cast<decltype(num_int_pts)>(num_nodes)) + if (num_int_pts < num_nodes) OGS_FATAL( "Least squares is not possible if there are more nodes than" "integration points."); -- GitLab