NullThermalConductionLaw: some modernization

- typedef -> using
This commit is contained in:
Arne Morten Kvarving 2022-08-03 08:26:43 +02:00
parent 199fe24e71
commit 6691a33c08

View File

@ -41,8 +41,8 @@ template <class ScalarT>
class NullThermalConductionLaw
{
public:
typedef int Params;
typedef ScalarT Scalar;
using Params = int;
using Scalar = ScalarT;
/*!
* \brief Given a fluid state, return the effective thermal conductivity [W/m^2 / (K/m)] of the porous
@ -55,6 +55,7 @@ public:
const FluidState&)
{ return 0.0; }
};
} // namespace Opm
#endif