Skip to content

Commit

Permalink
Revert some stuff.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrood-nrel committed Dec 21, 2023
1 parent 031c17a commit 3725381
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Source/PeleLMeX.H
Original file line number Diff line number Diff line change
Expand Up @@ -843,10 +843,10 @@ public:
// Soot

// SetSootIndx
void setSootIndx() const;
void setSootIndx();

// CleanupSootModel
void cleanupSootModel() const;
void cleanupSootModel();

// AddSootDerivePlotVars
// void addSootDerivePlotVars(PeleLMDeriveList& derive_lst);
Expand Down
4 changes: 2 additions & 2 deletions Source/PeleLMeX_Soot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using namespace amrex;

void
PeleLM::setSootIndx() const
PeleLM::setSootIndx()

Check warning on line 10 in Source/PeleLMeX_Soot.cpp

View workflow job for this annotation

GitHub Actions / Lint-clang-tidy (EB-OFF)

method 'setSootIndx' can be made const [readability-make-member-function-const]
{
const int ndim = AMREX_SPACEDIM;
SootComps sootComps;
Expand All @@ -25,7 +25,7 @@ PeleLM::setSootIndx() const
}

void
PeleLM::cleanupSootModel() const
PeleLM::cleanupSootModel()

Check warning on line 28 in Source/PeleLMeX_Soot.cpp

View workflow job for this annotation

GitHub Actions / Lint-clang-tidy (EB-OFF)

method 'cleanupSootModel' can be made const [readability-make-member-function-const]
{
delete soot_model;
}
Expand Down
2 changes: 1 addition & 1 deletion Submodules/PelePhysics

0 comments on commit 3725381

Please sign in to comment.