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/content.cc | |
| parent | dd9be86db6cde0afa5da0d1d1ac43b42e05dca26 (diff) | |
BOOST_FOREACH.
Diffstat (limited to 'src/lib/content.cc')
| -rw-r--r-- | src/lib/content.cc | 10 |
1 files changed, 5 insertions, 5 deletions
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<cxml::NodePtr> path_children = node->node_children ("Path"); - BOOST_FOREACH (cxml::NodePtr i, path_children) { + for (auto i: path_children) { _paths.push_back (i->content()); optional<time_t> const mod = i->optional_number_attribute<time_t>("mtime"); if (mod) { @@ -192,7 +192,7 @@ Content::examine (shared_ptr<const Film>, shared_ptr<Job> 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<boost::filesystem::path> 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<TextContent> Content::text_of_original_type (TextType type) const { - BOOST_FOREACH (shared_ptr<TextContent> i, text) { + for (auto i: text) { if (i->original_type() == type) { return i; } |
