From 601bfa749bb3469816c42ee4e0ff696dc448c84f Mon Sep 17 00:00:00 2001 From: Timo Koch <timo.koch@iws.uni-stuttgart.de> Date: Wed, 3 Jan 2018 15:38:45 +0100 Subject: [PATCH] [tutorial] Remove unnecessary template parameter --- tutorial/ex3/fluidsystems/h2omycompressiblecomponent.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorial/ex3/fluidsystems/h2omycompressiblecomponent.hh b/tutorial/ex3/fluidsystems/h2omycompressiblecomponent.hh index 933b81d689..7cf90ae851 100644 --- a/tutorial/ex3/fluidsystems/h2omycompressiblecomponent.hh +++ b/tutorial/ex3/fluidsystems/h2omycompressiblecomponent.hh @@ -46,12 +46,12 @@ namespace FluidSystems * \brief A compositional fluid consisting of two liquid phases, * 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 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; public: -- GitLab