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

Resolves warnings from clang
This commit is contained in:
Henry Weller
2016-08-18 10:36:52 +01:00
parent ab7dcca8a6
commit 6635d2edfe

View File

@ -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,