mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-13 08:06:32 +01:00
Fix Windows build
This commit is contained in:
@@ -44,7 +44,11 @@ struct SubMenuListEntry
|
||||
: name(name_), menu( std::move(menu_) )
|
||||
{}
|
||||
|
||||
// SubMenuListEntry( SubMenuListEntry&& ) = default;
|
||||
SubMenuListEntry(SubMenuListEntry &&that)
|
||||
: name(std::move(that.name))
|
||||
, menu(std::move(that.menu))
|
||||
{
|
||||
}
|
||||
|
||||
wxString name;
|
||||
std::unique_ptr<wxMenu> menu;
|
||||
|
||||
Reference in New Issue
Block a user