Skip to content
Snippets Groups Projects
Commit ec42fc56 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

type virtual -> virtual type

parent 94610549
No related branches found
No related tags found
No related merge requests found
...@@ -12,8 +12,8 @@ class NiceFunction : public VirtualFunction<double, double> { ...@@ -12,8 +12,8 @@ class NiceFunction : public VirtualFunction<double, double> {
public: public:
virtual ~NiceFunction() {} virtual ~NiceFunction() {}
virtual double leftDifferential(double s) const = 0; double virtual leftDifferential(double s) const = 0;
virtual double rightDifferential(double s) const = 0; double virtual rightDifferential(double s) const = 0;
double virtual second_deriv(double x) const { double virtual second_deriv(double x) const {
DUNE_THROW(NotImplemented, "second derivative not implemented"); DUNE_THROW(NotImplemented, "second derivative not implemented");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment