Skip to content

Commit

Permalink
remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
asalmgren committed Aug 17, 2024
1 parent 8f577a4 commit 650d8d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Godunov/hydro_godunov_ppm.H
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ void PredictStateOnXFace ( const int i, const int j, const int k, const int n,
const amrex::Array4<const amrex::Real> &vel_edge,
const amrex::BCRec bc,
const int domlo, const int domhi,
const Limiter& limiter,
const Limiter& /*limiter*/,
int limiter_type)
{
amrex::Real sm2 = S(i-2,j,k,n);
Expand Down Expand Up @@ -930,7 +930,7 @@ void PredictStateOnYFace ( const int i, const int j, const int k, const int n,
const amrex::Array4<const amrex::Real> &vel_edge,
const amrex::BCRec bc,
const int domlo, const int domhi,
const Limiter& limiter,
const Limiter& /*limiter*/,
int limiter_type)
{
amrex::Real sm2 = S(i,j-2,k,n);
Expand Down Expand Up @@ -1010,7 +1010,7 @@ void PredictStateOnZFace ( const int i, const int j, const int k, const int n,
const amrex::Array4<const amrex::Real> &vel_edge,
const amrex::BCRec bc,
const int domlo, const int domhi,
const Limiter& limiter,
const Limiter& /*limiter*/,
int limiter_type)
{
amrex::Real sm2 = S(i,j,k-2,n);
Expand Down

0 comments on commit 650d8d7

Please sign in to comment.