mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-05 03:03:10 +01: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:
@@ -128,7 +128,7 @@ void TimeTrack::Paste(double t, const Track * src)
|
||||
(t, static_cast<const TimeTrack*>(src)->mEnvelope.get(), sampleTime);
|
||||
}
|
||||
|
||||
void TimeTrack::Silence(double t0, double t1)
|
||||
void TimeTrack::Silence(double WXUNUSED(t0), double WXUNUSED(t1))
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user