PropertyObject<std::string>: Added a default ctor.

This commit is contained in:
Edward d'Auvergne
2018-05-17 22:31:02 +02:00
parent fea59adbbe
commit d550eac525

View File

@@ -157,6 +157,8 @@ template <>
class PropertyObject<std::string> : PropertyObjectBase
{
public:
PropertyObject() = default;
explicit PropertyObject(const char* aChild) :
PropertyObjectBase(aChild)
{ }