Skip to content

Commit

Permalink
Fixing CI warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
itopcuoglu committed Oct 9, 2024
1 parent 372b171 commit f3976a0
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion amr-wind/incflo_advance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void incflo::advance(int inonlin)
{
BL_PROFILE("amr-wind::incflo::advance");
if (inonlin == 0) {
m_sim.pde_manager().advance_states()
m_sim.pde_manager().advance_states();
};

ApplyPredictor(false, inonlin);
Expand Down
1 change: 0 additions & 1 deletion amr-wind/utilities/console_io.H
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ void print_mlmg_info(const std::string& solve_name, const amrex::MLMG& mlmg);

void print_tpls(std::ostream& /*out*/);

// void print_nonlinear_residual(CFDSim& sim);
void print_nonlinear_residual(
CFDSim& sim, ScratchField& vel_diff, ScratchField& vel_star);

Expand Down
2 changes: 0 additions & 2 deletions amr-wind/utilities/console_io.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,9 +218,7 @@ void print_tpls(std::ostream& out)
void print_nonlinear_residual(
CFDSim& sim, ScratchField& vel_diff, ScratchField& vel_star)
{
// using namespace amrex;
const int nlevels = sim.repo().num_active_levels();
const auto& geom = sim.mesh().Geom();
const auto& mesh = sim.mesh();

const auto& velocity_new = sim.pde_manager().icns().fields().field;
Expand Down

0 comments on commit f3976a0

Please sign in to comment.