mark constructors explicit

This commit is contained in:
Arne Morten Kvarving 2019-05-10 12:43:02 +02:00
parent a8e7c03a4f
commit 9b9fc2ef37

View File

@ -31,8 +31,8 @@ namespace Opm {
class UDAValue {
public:
UDAValue();
UDAValue(double);
UDAValue(const std::string&);
explicit UDAValue(double);
explicit UDAValue(const std::string&);
template<typename T>
T get() const;