BOOST_FOREACH.
[dcpomatic.git] / src / lib / image_content.cc
index 20f32c05dc0310c6d14b2a5d30758711c8218e1d..517d6792f89715d16f83edcaa60779f40a7e99ee 100644 (file)
@@ -29,7 +29,6 @@
 #include "image_filename_sorter.h"
 #include <libcxml/cxml.h>
 #include <libxml++/libxml++.h>
-#include <boost/foreach.hpp>
 #include <iostream>
 
 #include "i18n.h"
@@ -163,7 +162,7 @@ ImageContent::still () const
 void
 ImageContent::set_default_colour_conversion ()
 {
-       BOOST_FOREACH (boost::filesystem::path i, paths()) {
+       for (auto i: paths()) {
                if (valid_j2k_file (i)) {
                        /* We default to no colour conversion if we have JPEG2000 files */
                        video->unset_colour_conversion ();