Skip to content

Commit

Permalink
Code linting
Browse files Browse the repository at this point in the history
  • Loading branch information
lindsayad authored Dec 19, 2024
1 parent 2270f34 commit a4b009d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions include/problem/MFEMProblem.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ class MFEMProblem : public ExternalProblem
virtual ~MFEMProblem() {};

virtual void initialSetup() override;
virtual void externalSolve() override {};
virtual bool nlConverged(const unsigned int nl_sys_num) override { return true; };
virtual void syncSolutions(Direction direction) override {};
virtual void externalSolve() override {}
virtual bool nlConverged(const unsigned int) override { return true; }
virtual void syncSolutions(Direction) override {}

/**
* Overwritten mesh() method from base MooseMesh to retrieve the correct mesh type, in this case
Expand Down
2 changes: 1 addition & 1 deletion include/problem_operators/problem_operator.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ProblemOperator : public mfem::Operator, public ProblemOperatorInterface
void SetGridFunctions() override;

virtual void Solve(mfem::Vector & X) {}
void Mult(const mfem::Vector & x, mfem::Vector & y) const override {}
void Mult(const mfem::Vector &, mfem::Vector &) const override {}
};

} // namespace platypus
2 changes: 1 addition & 1 deletion include/problem_operators/time_domain_problem_operator.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class TimeDomainProblemOperator : public mfem::TimeDependentOperator,

void SetGridFunctions() override;

void ImplicitSolve(const double dt, const mfem::Vector & X, mfem::Vector & dX_dt) override {}
void ImplicitSolve(const double, const mfem::Vector &, mfem::Vector &) override {}
};

} // namespace platypus

0 comments on commit a4b009d

Please sign in to comment.