mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Force move construct/assign to be generated
This commit is contained in:
parent
87501518a9
commit
7dd79891e9
1 changed files with 6 additions and 0 deletions
|
@ -31,6 +31,12 @@ enum class menu_item_type
|
|||
class menu_item
|
||||
{
|
||||
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 subtext;
|
||||
UINT32 flags;
|
||||
|
|
Loading…
Reference in a new issue