BOOST_FOREACH.
[dcpomatic.git] / src / lib / shuffler.cc
index 2689fb83778d6e03191399eb5a4166c9b07f50de..0e478a562a658a6e6fe48493772ddb1eced6ee1f 100644 (file)
@@ -22,7 +22,6 @@
 #include "content_video.h"
 #include "dcpomatic_assert.h"
 #include "dcpomatic_log.h"
-#include <boost/foreach.hpp>
 #include <string>
 #include <iostream>
 
@@ -115,8 +114,7 @@ Shuffler::clear ()
 void
 Shuffler::flush ()
 {
-       BOOST_FOREACH (Store i, _store) {
-               LOG_DEBUG_PLAYER("Flushing %1 from shuffler", i.second.frame);
+       for (auto i: _store) {
                Video (i.first, i.second);
        }
 }