Skip to content

Commit

Permalink
Removed const modifier from LPInfo object on stack that was causing a…
Browse files Browse the repository at this point in the history
… warning from not being initialized properly.
  • Loading branch information
clarkse committed Feb 13, 2024
1 parent 83e16ee commit fd7edb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ablastr/fields/VectorPoissonSolver.H
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ computeVectorPotential ( amrex::Vector<amrex::Array<amrex::MultiFab*, 3> > 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++) {
Expand Down

0 comments on commit fd7edb0

Please sign in to comment.