From fd7edb03bad8e936a4855a3b61914d1a083f79b7 Mon Sep 17 00:00:00 2001 From: "S. Eric Clark" <25495882+clarkse@users.noreply.github.com> Date: Tue, 13 Feb 2024 14:36:38 -0800 Subject: [PATCH] Removed const modifier from LPInfo object on stack that was causing a warning from not being initialized properly. --- Source/ablastr/fields/VectorPoissonSolver.H | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/ablastr/fields/VectorPoissonSolver.H b/Source/ablastr/fields/VectorPoissonSolver.H index a8833b070b8..b8254dbb560 100644 --- a/Source/ablastr/fields/VectorPoissonSolver.H +++ b/Source/ablastr/fields/VectorPoissonSolver.H @@ -130,7 +130,7 @@ computeVectorPotential ( amrex::Vector > co ); } - const amrex::LPInfo info; + amrex::LPInfo info; // Loop over dimensions of A to solve each component individually for (int lev=0; lev<=finest_level; lev++) {