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/cross_common.cc | |
| parent | dd9be86db6cde0afa5da0d1d1ac43b42e05dca26 (diff) | |
BOOST_FOREACH.
Diffstat (limited to 'src/lib/cross_common.cc')
| -rw-r--r-- | src/lib/cross_common.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/cross_common.cc b/src/lib/cross_common.cc index edc806b58..f8556b1fd 100644 --- a/src/lib/cross_common.cc +++ b/src/lib/cross_common.cc @@ -23,7 +23,6 @@ #include "dcpomatic_log.h" #include "warnings.h" #include <dcp/raw_convert.h> -#include <boost/foreach.hpp> DCPOMATIC_DISABLE_WARNINGS #include <libxml++/libxml++.h> DCPOMATIC_ENABLE_WARNINGS @@ -38,7 +37,7 @@ Drive::Drive (string xml) cxml::Document doc; doc.read_string (xml); _device = doc.string_child("Device"); - BOOST_FOREACH (cxml::ConstNodePtr i, doc.node_children("MountPoint")) { + for (auto i: doc.node_children("MountPoint")) { _mount_points.push_back (i->content()); } _size = doc.number_child<uint64_t>("Size"); @@ -53,7 +52,7 @@ Drive::as_xml () const xmlpp::Document doc; xmlpp::Element* root = doc.create_root_node ("Drive"); root->add_child("Device")->add_child_text(_device); - BOOST_FOREACH (boost::filesystem::path i, _mount_points) { + for (auto i: _mount_points) { root->add_child("MountPoint")->add_child_text(i.string()); } root->add_child("Size")->add_child_text(dcp::raw_convert<string>(_size)); @@ -96,7 +95,7 @@ string Drive::log_summary () const { string mp; - BOOST_FOREACH (boost::filesystem::path i, _mount_points) { + for (auto i: _mount_points) { mp += i.string() + ","; } if (mp.empty()) { |
