mirror of
https://github.com/holub/mame
synced 2025-07-03 17:08:39 +03:00
Force move construct/assign to be generated
This commit is contained in:
parent
87501518a9
commit
7dd79891e9
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user