Skip to content
Snippets Groups Projects
Commit 6635d2ed authored by Henry Weller's avatar Henry Weller
Browse files

ODESolvers::adaptiveSolver: Changed functions which need not be to non-virtual

Resolves warnings from clang
parent ab7dcca8
No related merge requests found
......@@ -75,7 +75,7 @@ public:
// Member Functions
//- Resize the ODE solver
virtual bool resize(const label n);
bool resize(const label n);
//- Solve a single step dx and return the error
virtual scalar solve
......@@ -88,7 +88,7 @@ public:
) const = 0;
//- Solve the ODE system and the update the state
virtual void solve
void solve
(
const ODESystem& ode,
scalar& x,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment