Force move construct/assign to be generated

This commit is contained in:
Vas Crabb 2016-06-30 20:15:20 +10:00
parent 87501518a9
commit 7dd79891e9

View File

@ -31,6 +31,12 @@ enum class menu_item_type
class menu_item class menu_item
{ {
public: public:
menu_item() = default;
menu_item(menu_item const &) = default;
menu_item(menu_item &&) = default;
menu_item &operator=(menu_item const &) = default;
menu_item &operator=(menu_item &&) = default;
std::string text; std::string text;
std::string subtext; std::string subtext;
UINT32 flags; UINT32 flags;