1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 22:12:58 +02:00

fixed more "statement has no effect" warnings

This commit is contained in:
andheh
2018-02-26 10:22:50 +01:00
committed by James Crook
parent 84016716f0
commit d72028de26
2 changed files with 3 additions and 3 deletions

View File

@@ -271,7 +271,7 @@ unsigned BuiltinCommandsModule::DiscoverPluginsAtPath(
bool BuiltinCommandsModule::IsPluginValid(const wxString & path, bool bFast)
{
// bFast is unused as checking in the list is fast.
bFast;
static_cast<void>(bFast); // avoid unused variable warning
return mNames.Index(path) != wxNOT_FOUND;
}