Skip to content

Commit

Permalink
clang-tidy unused arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
baperry2 committed Nov 8, 2024
1 parent 8fa4b75 commit 2da3bb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Eos/EOS.H
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,14 @@ element_compositionCHON(int ecompCHON[])

template <>
inline void
atomic_weightsCHON<GammaLaw>(amrex::Real atwCHON[])
atomic_weightsCHON<GammaLaw>(amrex::Real* /*atwCHON[]*/)
{
amrex::Error("atomic_weightsCHON not supported for GammaLaw EOS");
}

template <>
inline void
element_compositionCHON<GammaLaw>(int ecompCHON[])
element_compositionCHON<GammaLaw>(int* /*ecompCHON[]*/)
{
amrex::Error("element_compositionCHON not supported for GammaLaw EOS");
}
Expand Down

0 comments on commit 2da3bb6

Please sign in to comment.