mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-19 17:11:12 +02:00
Clean up some dead code and MSVC warnings.
- Dead code from experiments in SelectionBar removed. - Many warnings about unused parameters fixed with WXUNUSED() - Many warnings about signed / unsigned comparisons cleaned up. - Several 'local variable declared but not used' warnings fixed.
This commit is contained in:
@@ -472,7 +472,7 @@ bool VampEffect::Process()
|
||||
|
||||
if (request < block)
|
||||
{
|
||||
for (int c = 0; c < channels; ++c)
|
||||
for (unsigned int c = 0; c < channels; ++c)
|
||||
{
|
||||
for (decltype(block) i = request; i < block; ++i)
|
||||
{
|
||||
|
Reference in New Issue
Block a user