diff --git a/dumux/flux/upwindscheme.hh b/dumux/flux/upwindscheme.hh index 93d92021a03154c9f2f2436fa7b82c24738ac1cc..1ccdcd052bdcc3a9cce84587c1a7a407f9faff65 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