From b2ac11cff214d8305f2d42f27c3e34b061b0f73b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gr=C3=BCninger?= <foss@grueninger.de> Date: Fri, 21 Jun 2019 00:36:13 +0200 Subject: [PATCH] [cleanup] Remove superflouous semicolon --- dumux/freeflow/navierstokes/staggered/fluxvariables.hh | 2 +- dumux/freeflow/navierstokes/staggered/localresidual.hh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dumux/freeflow/navierstokes/staggered/fluxvariables.hh b/dumux/freeflow/navierstokes/staggered/fluxvariables.hh index cb1ffcb090..14a8a96e8b 100644 --- a/dumux/freeflow/navierstokes/staggered/fluxvariables.hh +++ b/dumux/freeflow/navierstokes/staggered/fluxvariables.hh @@ -655,7 +655,7 @@ private: //! do nothing if no turbulence model is used template<class ...Args, bool turbulenceModel = ModelTraits::usesTurbulenceModel(), std::enable_if_t<!turbulenceModel, int> = 0> bool incorporateWallFunction_(Args&&... args) const - { return false; }; + { return false; } //! if a turbulence model is used, ask the problem is a wall function shall be employed and get the flux accordingly template<bool turbulenceModel = ModelTraits::usesTurbulenceModel(), std::enable_if_t<turbulenceModel, int> = 0> diff --git a/dumux/freeflow/navierstokes/staggered/localresidual.hh b/dumux/freeflow/navierstokes/staggered/localresidual.hh index c343b441aa..a109f12597 100644 --- a/dumux/freeflow/navierstokes/staggered/localresidual.hh +++ b/dumux/freeflow/navierstokes/staggered/localresidual.hh @@ -307,7 +307,7 @@ private: //! do nothing if no turbulence model is used template<class ...Args, bool turbulenceModel = ModelTraits::usesTurbulenceModel(), std::enable_if_t<!turbulenceModel, int> = 0> void incorporateWallFunction_(Args&&... args) const - {}; + {} //! if a turbulence model is used, ask the problem is a wall function shall be employed and get the flux accordingly template<bool turbulenceModel = ModelTraits::usesTurbulenceModel(), std::enable_if_t<turbulenceModel, int> = 0> @@ -332,7 +332,7 @@ private: * extrusionFactor * scvf.area(); } } - }; + } //! Returns the implementation of the problem (i.e. static polymorphism) Implementation &asImp_() -- GitLab