Skip to content

Commit

Permalink
Merge branch 'clang-tidy-gravity' into enforce_clang_tidy_ci
Browse files Browse the repository at this point in the history
  • Loading branch information
zingale committed Mar 25, 2024
2 parents 3553c3d + bc4c68c commit f2829e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/reactions/Castro_react.H
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// Perform any old-time reactions.
///
advance_status do_old_reactions (Real time, Real dt); // NOLINT(readability-convert-member-functions-to-static)
advance_status do_old_reactions (Real time, Real dt);

///
/// Perform any new-time reactions.
Expand Down
4 changes: 2 additions & 2 deletions Source/reactions/Castro_react.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ using namespace amrex;
#ifndef TRUE_SDC

advance_status
Castro::do_old_reactions (Real time, Real dt)
{
Castro::do_old_reactions (Real time, Real dt) { // NOLINT(readability-convert-member-functions-to-static)

amrex::ignore_unused(time);
amrex::ignore_unused(dt);

Expand Down

0 comments on commit f2829e7

Please sign in to comment.