BOOST_FOREACH.
[dcpomatic.git] / src / lib / send_problem_report_job.cc
index 143baaa1bdeb89e576319304956ab0df9952e863..cff1c8e9f873ad179816a31d013c116b1a9b4135 100644 (file)
@@ -28,7 +28,6 @@
 #include "emailer.h"
 #include "environment_info.h"
 #include <libxml++/libxml++.h>
-#include <boost/foreach.hpp>
 
 #include "i18n.h"
 
@@ -83,7 +82,7 @@ SendProblemReportJob::run ()
 
        body += "Version: " + string (dcpomatic_version) + " " + string (dcpomatic_git_commit) + "\n\n";
 
-       BOOST_FOREACH (string i, environment_info ()) {
+       for (auto i: environment_info ()) {
                body += i + "\n";
        }