X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsend_problem_report_job.cc;h=cff1c8e9f873ad179816a31d013c116b1a9b4135;hb=28111007e2e6fd62f5810be780706ae1618bd33f;hp=d27609f0bdd715aac50fff167e7dbbaf40b2c042;hpb=caf67bef2611a911307267b20dbf3be89ffff71f;p=dcpomatic.git diff --git a/src/lib/send_problem_report_job.cc b/src/lib/send_problem_report_job.cc index d27609f0b..cff1c8e9f 100644 --- a/src/lib/send_problem_report_job.cc +++ b/src/lib/send_problem_report_job.cc @@ -28,13 +28,12 @@ #include "emailer.h" #include "environment_info.h" #include -#include #include "i18n.h" using std::string; using std::list; -using boost::shared_ptr; +using std::shared_ptr; /** @param film Film thta the problem is with, or 0. * @param from Email address to use for From: @@ -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"; }