Skip to content
Snippets Groups Projects
Commit caf72015 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MaL] Use override specifier in OdeSolverFactory.

parent a5e7052a
No related branches found
No related tags found
No related merge requests found
...@@ -172,7 +172,7 @@ public: ...@@ -172,7 +172,7 @@ public:
Implementation::setIC(t0, y0.data()); Implementation::setIC(t0, y0.data());
} }
void preSolve() { Implementation::preSolve(); } void preSolve() override { Implementation::preSolve(); }
void solve(const double t) override { Implementation::solve(t); } void solve(const double t) override { Implementation::solve(t); }
ConstArrRef getSolution() const override ConstArrRef getSolution() const override
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment