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

virtual T* -> T virtual *

parent e1b8ba93
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ class TimeSteppingScheme {
void virtual extractDisplacement(VectorType &displacement) const = 0;
void virtual extractVelocity(VectorType &velocity) const = 0;
virtual TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> *
TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> virtual *
clone() = 0;
};
......@@ -34,7 +34,7 @@ class ImplicitEuler
void virtual extractDisplacement(VectorType &) const override;
void virtual extractVelocity(VectorType &) const override;
virtual TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> *clone()
TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> virtual *clone()
override;
private:
......@@ -69,7 +69,7 @@ class Newmark
void virtual extractDisplacement(VectorType &) const override;
void virtual extractVelocity(VectorType &) const override;
virtual TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> *clone()
TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> virtual *clone()
override;
private:
......@@ -106,7 +106,7 @@ class EulerPair
void virtual extractDisplacement(VectorType &) const override;
void virtual extractVelocity(VectorType &) const override;
virtual TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> *clone()
TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> virtual *clone()
override;
private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment