Explicitly default move/copy constructors

This commit is contained in:
Antonio Andelic 2021-12-20 14:50:06 +01:00
parent ef57b759e0
commit bc52758e4d

View File

@ -102,6 +102,13 @@ public:
return prompter.getHints(name, getAllRegisteredNames());
}
IHints() = default;
IHints(const IHints &) = default;
IHints(IHints &&) = default;
IHints & operator=(const IHints &) = default;
IHints & operator=(IHints &&) = default;
virtual ~IHints() = default;
private: