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
Branches
Tags
No related merge requests found
...@@ -75,7 +75,7 @@ public: ...@@ -75,7 +75,7 @@ public:
// Member Functions // Member Functions
//- Resize the ODE solver //- Resize the ODE solver
virtual bool resize(const label n); bool resize(const label n);
//- Solve a single step dx and return the error //- Solve a single step dx and return the error
virtual scalar solve virtual scalar solve
...@@ -88,7 +88,7 @@ public: ...@@ -88,7 +88,7 @@ public:
) const = 0; ) const = 0;
//- Solve the ODE system and the update the state //- Solve the ODE system and the update the state
virtual void solve void solve
( (
const ODESystem& ode, const ODESystem& ode,
scalar& x, 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