Cleanup: use auto.
authorCarl Hetherington <cth@carlh.net>
Sun, 19 May 2024 21:27:18 +0000 (23:27 +0200)
committerCarl Hetherington <cth@carlh.net>
Sun, 19 May 2024 21:27:18 +0000 (23:27 +0200)
src/wx/timeline_audio_content_view.cc

index 057ebb944b8b8d632b53c36ba93410fe3a4cbb85..0e9701034768b6fd7196b61e2135801fe50e3855 100644 (file)
@@ -68,7 +68,7 @@ TimelineAudioContentView::label () const
                s += wxString::Format (_(" advanced by %dms"), -ac->delay());
        }
 
-       list<int> mapped = ac->mapping().mapped_output_channels();
+       auto mapped = ac->mapping().mapped_output_channels();
        if (!mapped.empty ()) {
                s += wxString::FromUTF8(" → ");
                for (auto i: mapped) {