From 670f98cb85f8a77a05ff40713ee5a2354bd470a2 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <github@naumov.de> Date: Fri, 12 Feb 2021 11:39:45 +0100 Subject: [PATCH] [NL] Remove const from POD. Enables moves and copies. --- NumLib/NewtonRaphson.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NumLib/NewtonRaphson.h b/NumLib/NewtonRaphson.h index b78af5dfafb..22820b858d1 100644 --- a/NumLib/NewtonRaphson.h +++ b/NumLib/NewtonRaphson.h @@ -20,9 +20,9 @@ namespace NumLib struct NewtonRaphsonSolverParameters { - int const maximum_iterations; - double const residuum_tolerance; - double const increment_tolerance; + int maximum_iterations; + double residuum_tolerance; + double increment_tolerance; }; /// Newton-Raphson solver for system of equations using an Eigen linear solvers -- GitLab