From c7186ef47a162476e413e7ac2431f54cebd19d3c Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Tue, 10 Sep 2019 11:02:24 +0200 Subject: [PATCH] [MPL] Explicit ParameterProperty ctor. Because single argument... --- MaterialLib/MPL/Properties/ParameterProperty.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MaterialLib/MPL/Properties/ParameterProperty.h b/MaterialLib/MPL/Properties/ParameterProperty.h index 8e00afddf7f..d9c9fcbfe39 100644 --- a/MaterialLib/MPL/Properties/ParameterProperty.h +++ b/MaterialLib/MPL/Properties/ParameterProperty.h @@ -24,7 +24,8 @@ class ParameterProperty final : public Property { public: /// This constructor accepts a Parameter. - ParameterProperty(ParameterLib::Parameter<double> const& parameter); + explicit ParameterProperty( + ParameterLib::Parameter<double> const& parameter); /// This method computes the value of a property depending linearly on /// the value of the given primary variable. -- GitLab