Skip to content
Snippets Groups Projects
Commit 601bfa74 authored by Timo Koch's avatar Timo Koch
Browse files

[tutorial] Remove unnecessary template parameter

parent 328cfde0
No related branches found
No related tags found
No related merge requests found
...@@ -46,12 +46,12 @@ namespace FluidSystems ...@@ -46,12 +46,12 @@ namespace FluidSystems
* \brief A compositional fluid consisting of two liquid phases, * \brief A compositional fluid consisting of two liquid phases,
* which are water and a ficitious component from tutorial exercise 3a. * which are water and a ficitious component from tutorial exercise 3a.
*/ */
template <class TypeTag, class Scalar, template <class Scalar,
class H2OType = Dumux::TabulatedComponent<Scalar, Dumux::H2O<Scalar> > > class H2OType = Dumux::TabulatedComponent<Scalar, Dumux::H2O<Scalar> > >
class H2OMyCompressibleComponent class H2OMyCompressibleComponent
: public BaseFluidSystem< Scalar, H2OMyCompressibleComponent<TypeTag, Scalar, H2OType> > : public BaseFluidSystem< Scalar, H2OMyCompressibleComponent<Scalar, H2OType> >
{ {
typedef H2OMyCompressibleComponent<TypeTag, Scalar, H2OType> ThisType; typedef H2OMyCompressibleComponent<Scalar, H2OType> ThisType;
typedef BaseFluidSystem<Scalar, ThisType> Base; typedef BaseFluidSystem<Scalar, ThisType> Base;
public: public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment