Skip to content

Commit

Permalink
Fix moving terrain and comment unused vars. (#1481)
Browse files Browse the repository at this point in the history
Co-authored-by: Aaron Lattanzi <[email protected]>
  • Loading branch information
AMLattanzi and Aaron Lattanzi authored Mar 6, 2024
1 parent 0245d1e commit ec69524
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/ERF.H
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ private:
// mynn pbl lengthscale
"Lpbl",
// moisture vars
"qt", "qv", "qc", "qi", "qp", "qrain", "qsnow", "qgraup", "rain_accum",
"qt", "qv", "qc", "qi", "qp", "qrain", "qsnow", "qgraup", "rain_accum"
#ifdef ERF_COMPUTE_ERROR
,"xvel_err", "yvel_err", "zvel_err", "pp_err"
#endif
Expand Down
3 changes: 2 additions & 1 deletion Source/Microphysics/FastEddy/FastEddy.H
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ public:

// wrapper to do all the updating
void
Advance (const amrex::Real& dt_advance, const SolverChoice& solverChoice) override
Advance (const amrex::Real& dt_advance,
const SolverChoice& /*solverChoice*/) override
{
dt = dt_advance;

Expand Down
2 changes: 1 addition & 1 deletion Source/Microphysics/SAM/SAM.H
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public:
// wrapper to do all the updating
void
Advance (const amrex::Real& dt_advance,
const SolverChoice& solverChoice) override
const SolverChoice& /*solverChoice*/) override
{
dt = dt_advance;

Expand Down

0 comments on commit ec69524

Please sign in to comment.