Skip to content

Commit

Permalink
fix name mismatch in shock header arguments (#2787)
Browse files Browse the repository at this point in the history
this was flagged by clang-tidy
  • Loading branch information
zingale authored Mar 19, 2024
1 parent f28d8a8 commit 1adfd51
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Source/hydro/Castro_hydro.H
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,14 @@
///
/// A multidimensional shock detection algorithm
///
/// @param bx the box to operate over
/// @param q_arr the primitive variable state
/// @param shk the shock flag (1 = shock, 0 = no shock)
/// @param bx the box to operate over
/// @param q_arr the primitive variable state
/// @param U_scr_arr the conservative state sources
/// @param shk the shock flag (1 = shock, 0 = no shock)
///
void shock(const amrex::Box& bx,
amrex::Array4<amrex::Real const> const& q_arr,
amrex::Array4<amrex::Real const> const& q_src_arr,
amrex::Array4<amrex::Real const> const& U_src_arr,
amrex::Array4<amrex::Real> const& shk);

///
Expand Down

0 comments on commit 1adfd51

Please sign in to comment.