From 1adfd5153c105c96240832a53c6c0d210c033892 Mon Sep 17 00:00:00 2001 From: Michael Zingale Date: Tue, 19 Mar 2024 09:15:02 -0400 Subject: [PATCH] fix name mismatch in shock header arguments (#2787) this was flagged by clang-tidy --- Source/hydro/Castro_hydro.H | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Source/hydro/Castro_hydro.H b/Source/hydro/Castro_hydro.H index 95cb91dda1..c266e17d78 100644 --- a/Source/hydro/Castro_hydro.H +++ b/Source/hydro/Castro_hydro.H @@ -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 const& q_arr, - amrex::Array4 const& q_src_arr, + amrex::Array4 const& U_src_arr, amrex::Array4 const& shk); ///