mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 06:01:13 +02:00
Fix many MSVC compiler warnings.
This commit is contained in:
@@ -570,7 +570,8 @@ namespace MenuTable {
|
||||
std::forward<Args>(args)... ); }
|
||||
inline BaseItemPtr Items(
|
||||
const wxString &title, BaseItemPtrs &&items )
|
||||
{ return std::make_unique<GroupItem>( std::move( items ) ); }
|
||||
{ (void)title; // Compiler food
|
||||
return std::make_unique<GroupItem>( std::move( items ) ); }
|
||||
|
||||
// Menu items can be constructed two ways, as for group items
|
||||
// Items will appear in a main toolbar menu or in a sub-menu
|
||||
|
Reference in New Issue
Block a user