diff --git a/dune/tectonic/myconvexproblem.hh b/dune/tectonic/myconvexproblem.hh
index 0058c742c4c419956eadecbe219651ad34be8fc7..e484d6a902d7793c716410359ad78a91a9697ec9 100644
--- a/dune/tectonic/myconvexproblem.hh
+++ b/dune/tectonic/myconvexproblem.hh
@@ -27,7 +27,7 @@ class MyConvexProblem {
   MyConvexProblem(MatrixType const &A,
                   Dune::GlobalNonlinearity<MatrixType, VectorType> const &phi,
                   VectorType const &f)
-      : A(A), phi(phi), f(f) {};
+      : A(A), phi(phi), f(f) {}
 
   /* Just for debugging */
   double operator()(VectorType const &x) const {
@@ -39,7 +39,6 @@ class MyConvexProblem {
 
   MatrixType const &A;
   Dune::GlobalNonlinearity<MatrixType, VectorType> const &phi;
-
   VectorType const &f;
 };