X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fcontent.cc;h=5fb9d324ac8142953edfafe33ab2c4759af59068;hp=efcec534c433ec9b1b36c6903eb4d061504dcb28;hb=a5d004b0773f633401528392fc28e66d70e13ac8;hpb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26 diff --git a/src/lib/content.cc b/src/lib/content.cc index efcec534c..5fb9d324a 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -92,7 +92,7 @@ Content::Content (cxml::ConstNodePtr node) : _change_signals_frequent (false) { list path_children = node->node_children ("Path"); - BOOST_FOREACH (cxml::NodePtr i, path_children) { + for (auto i: path_children) { _paths.push_back (i->content()); optional const mod = i->optional_number_attribute("mtime"); if (mod) { @@ -192,7 +192,7 @@ Content::examine (shared_ptr, shared_ptr job) _digest = d; _last_write_times.clear (); - BOOST_FOREACH (boost::filesystem::path i, _paths) { + for (auto i: _paths) { _last_write_times.push_back (boost::filesystem::last_write_time(i)); } } @@ -327,7 +327,7 @@ Content::identifier () const bool Content::paths_valid () const { - BOOST_FOREACH (boost::filesystem::path i, _paths) { + for (auto i: _paths) { if (!boost::filesystem::exists (i)) { return false; } @@ -345,7 +345,7 @@ Content::set_paths (vector paths) boost::mutex::scoped_lock lm (_mutex); _paths = paths; _last_write_times.clear (); - BOOST_FOREACH (boost::filesystem::path i, _paths) { + for (auto i: _paths) { _last_write_times.push_back (boost::filesystem::last_write_time(i)); } } @@ -495,7 +495,7 @@ Content::only_text () const shared_ptr Content::text_of_original_type (TextType type) const { - BOOST_FOREACH (shared_ptr i, text) { + for (auto i: text) { if (i->original_type() == type) { return i; }