From d7f9ad8cb9ea2be82cfd4708f9a40f1c6215b6b8 Mon Sep 17 00:00:00 2001
From: Christoph Grueninger <christoph.grueninger@iws.uni-stuttgart.de>
Date: Thu, 24 Sep 2015 12:08:19 +0000
Subject: [PATCH] [cleanup] Remove superfluous semicolons after functions.

(reviewed by fetzer)


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15524 2fb0f335-1f38-0410-981e-8018bf24f1b0
---
 dumux/common/timemanager.hh                     | 4 ++--
 dumux/implicit/2p2c/2p2clocalresidual.hh        | 2 +-
 dumux/implicit/nonisothermal/nilocalresidual.hh | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dumux/common/timemanager.hh b/dumux/common/timemanager.hh
index 6164676dc3..b77a0b6469 100644
--- a/dumux/common/timemanager.hh
+++ b/dumux/common/timemanager.hh
@@ -264,7 +264,7 @@ public:
             std::min(std::min(episodeMaxTimeStepSize(),
                     GET_PARAM_FROM_GROUP(TypeTag, Scalar, TimeManager, MaxTimeStepSize)),
                      std::max<Scalar>(0.0, endTime() - time()));
-    };
+    }
 
     /*
      * @}
@@ -361,7 +361,7 @@ public:
         return
             std::max<Scalar>(0.0,
                              episodeLength() - (time() - episodeStartTime()));
-    };
+    }
 
     /*
      * @}
diff --git a/dumux/implicit/2p2c/2p2clocalresidual.hh b/dumux/implicit/2p2c/2p2clocalresidual.hh
index c4367e348b..29e9729f58 100644
--- a/dumux/implicit/2p2c/2p2clocalresidual.hh
+++ b/dumux/implicit/2p2c/2p2clocalresidual.hh
@@ -90,7 +90,7 @@ class TwoPTwoCLocalResidual: public GET_PROP_TYPE(TypeTag, BaseLocalResidual)
         // specified via the property system as default, and overwrite
         // it by the run-time parameter from the Dune::ParameterTree
         massUpwindWeight_ = GET_PARAM_FROM_GROUP(TypeTag, Scalar, Implicit, MassUpwindWeight);
-    };
+    }
 
     /*!
      * \brief Evaluate the storage term of the current solution in a
diff --git a/dumux/implicit/nonisothermal/nilocalresidual.hh b/dumux/implicit/nonisothermal/nilocalresidual.hh
index e5a6364bee..b03925884c 100644
--- a/dumux/implicit/nonisothermal/nilocalresidual.hh
+++ b/dumux/implicit/nonisothermal/nilocalresidual.hh
@@ -66,7 +66,7 @@ public:
         // specified via the property system as default, and overwrite
         // it by the run-time parameter from the Dune::ParameterTree
         massUpwindWeight_ = GET_PARAM_FROM_GROUP(TypeTag, Scalar, Implicit, MassUpwindWeight);
-    };
+    }
 
     /*!
      * \brief Evaluate the amount of all conservation quantities
-- 
GitLab