From 6cd44bf6ed03357d161245ffc56e42743b65facd Mon Sep 17 00:00:00 2001 From: Ivan Buntic Date: Sat, 2 Oct 2021 21:33:23 +0200 Subject: [PATCH] [Tag] Adapted template parameters for upwindscheme. --- dumux/flux/upwindscheme.hh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dumux/flux/upwindscheme.hh b/dumux/flux/upwindscheme.hh index 93d92021a0..1ccdcd052b 100644 --- a/dumux/flux/upwindscheme.hh +++ b/dumux/flux/upwindscheme.hh @@ -30,7 +30,7 @@ namespace Dumux { //! Forward declaration of the upwind scheme implementation -template +template class UpwindSchemeImpl; /*! @@ -39,7 +39,7 @@ class UpwindSchemeImpl; * This depends on the chosen discretization method. */ template -using UpwindScheme = UpwindSchemeImpl; +using UpwindScheme = UpwindSchemeImpl; namespace Detail { @@ -69,7 +69,7 @@ Scalar upwindSchemeMultiplier(const ElemVolVars& elemVolVars, //! Upwind scheme for the box method (uses the standard scheme) template -class UpwindSchemeImpl +class UpwindSchemeImpl { public: //! applies a simple upwind scheme to the precalculated advective flux @@ -104,7 +104,7 @@ public: //! Upwind scheme for the cell-centered tpfa scheme template -class UpwindSchemeImpl +class UpwindSchemeImpl { using GridView = typename GridGeometry::GridView; static constexpr int dim = GridView::dimension; @@ -205,8 +205,8 @@ public: //! Upwind scheme for cell-centered mpfa schemes template -class UpwindSchemeImpl -: public UpwindSchemeImpl {}; +class UpwindSchemeImpl +: public UpwindSchemeImpl {}; } // end namespace Dumux -- GitLab