diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-04 21:32:13 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-07 23:27:56 +0100 |
| commit | a5d004b0773f633401528392fc28e66d70e13ac8 (patch) | |
| tree | 9f83ff2ab353f5a63918210d4930d0ead228375e /src/lib/shuffler.cc | |
| parent | dd9be86db6cde0afa5da0d1d1ac43b42e05dca26 (diff) | |
BOOST_FOREACH.
Diffstat (limited to 'src/lib/shuffler.cc')
| -rw-r--r-- | src/lib/shuffler.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/shuffler.cc b/src/lib/shuffler.cc index 2689fb837..0e478a562 100644 --- a/src/lib/shuffler.cc +++ b/src/lib/shuffler.cc @@ -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); } } |
