BOOST_FOREACH.
[dcpomatic.git] / src / wx / timeline_audio_content_view.cc
index 3ae0fdb45e07134e940ab04e8ddd3ed00d5f9052..03481343c6bfb097ec4b284554d0b7d72261cb4f 100644 (file)
@@ -24,8 +24,8 @@
 #include "lib/util.h"
 
 using std::list;
-using boost::shared_ptr;
-using boost::dynamic_pointer_cast;
+using std::shared_ptr;
+using std::dynamic_pointer_cast;
 
 /** @class TimelineAudioContentView
  *  @brief Timeline view for AudioContent.
@@ -71,7 +71,7 @@ TimelineAudioContentView::label () const
        list<int> mapped = ac->mapping().mapped_output_channels();
        if (!mapped.empty ()) {
                s += " → ";
-               BOOST_FOREACH (int i, mapped) {
+               for (auto i: mapped) {
                        s += std_to_wx(short_audio_channel_name(i)) + ", ";
                }
                s = s.Left(s.Length() - 2);