fixed: add missing initializer

This commit is contained in:
Arne Morten Kvarving 2021-10-12 10:22:48 +02:00
parent 5413ce3539
commit 573ce9199f

View File

@ -28,7 +28,7 @@ class BDFMats : public ElmMats
public:
//! \brief The constructor initializes the time integration parameters.
//! param[in] bdfscheme BDF time discretization scheme
explicit BDFMats(const TimeIntegration::BDFD2& bdfscheme) : bdf(bdfscheme) {}
explicit BDFMats(const TimeIntegration::BDFD2& bdfscheme) : bdf(bdfscheme) { h = 1.0; }
//! \brief Empty destructor.
virtual ~BDFMats() {}