Skip to content

Commit

Permalink
Satisfy clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
cgilet committed Jun 18, 2024
1 parent cf86bf5 commit d9b2e65
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/incflo.H
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,9 @@ public:
amrex::Real time, amrex::Real scaling_factor, bool incremental);
void ApplyNodalProjection(amrex::Vector<amrex::MultiFab const*> density,
amrex::Real time, amrex::Real scaling_factor, bool incremental);
void ApplyNodalProjection(amrex::Vector<amrex::MultiFab const*> density,
amrex::Vector<amrex::MultiFab *> vel,
amrex::Vector<amrex::MultiFab *> divu_Source,
void ApplyNodalProjection(amrex::Vector<amrex::MultiFab const*> const& density,
amrex::Vector<amrex::MultiFab *> vel,
amrex::Vector<amrex::MultiFab *> const& divu_Source,
amrex::Real time, amrex::Real scaling_factor, bool incremental,
bool set_inflow_bc);

Expand Down
6 changes: 3 additions & 3 deletions src/projection/incflo_apply_nodal_projection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ void incflo::ApplyNodalProjection (Vector<MultiFab const*> density,
}
}

void incflo::ApplyNodalProjection (Vector<MultiFab const*> density,
Vector<MultiFab *> vel,
Vector<MultiFab *> /*divu_Source*/, // only incompressible for now
void incflo::ApplyNodalProjection (Vector<MultiFab const*> const& density,
Vector<MultiFab *> vel,
Vector<MultiFab *> const& /*divu_Source*/, // only incompressible for now
Real time, Real scaling_factor, bool incremental,
bool set_inflow_bc)
{
Expand Down

0 comments on commit d9b2e65

Please sign in to comment.