From c6687c5c0bb665936cad8e87a3a26ddd20eb0fc4 Mon Sep 17 00:00:00 2001
From: Elias Pipping <elias.pipping@fu-berlin.de>
Date: Sun, 10 Feb 2013 20:22:08 +0100
Subject: [PATCH] virtual T* -> T virtual *

---
 src/timestepping.hh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/timestepping.hh b/src/timestepping.hh
index 3146d10c..0d417727 100644
--- a/src/timestepping.hh
+++ b/src/timestepping.hh
@@ -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:
-- 
GitLab