Skip to content

Commit

Permalink
fix bug introduced fixing clang-tidy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lucafedeli88 committed Sep 18, 2024
1 parent ad69751 commit dd78d7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public:

void computePhiTriDiagonal (
const ablastr::fields::MultiLevelScalarField& rho,
ablastr::fields::MultiLevelScalarField& phi
const ablastr::fields::MultiLevelScalarField& phi
);

};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void LabFrameExplicitES::ComputeSpaceChargeField (
*/
void LabFrameExplicitES::computePhiTriDiagonal (
const ablastr::fields::MultiLevelScalarField& rho,
ablastr::fields::MultiLevelScalarField& phi)
const ablastr::fields::MultiLevelScalarField& phi)
{
WARPX_ALWAYS_ASSERT_WITH_MESSAGE(num_levels == 1,
"The tridiagonal solver cannot be used with mesh refinement");
Expand Down

0 comments on commit dd78d7c

Please sign in to comment.