Use dcp::file_to_string().
[dcpomatic.git] / src / lib / string_text_file_decoder.cc
index 415851aef4737366127a26ba2ee7e09af75a6069..f24147851847e1ee120354984f2dbd40f20630a7 100644 (file)
@@ -23,7 +23,6 @@
 #include "text_content.h"
 #include "text_decoder.h"
 #include <dcp/subtitle_string.h>
-#include <boost/foreach.hpp>
 #include <iostream>
 
 using std::list;
@@ -95,8 +94,8 @@ vector<FontData>
 StringTextFileDecoder::fonts () const
 {
        vector<FontData> data;
-       BOOST_FOREACH (shared_ptr<TextDecoder> i, text) {
-               BOOST_FOREACH (shared_ptr<Font> j, i->content()->fonts()) {
+       for (auto i: text) {
+               for (auto j: i->content()->fonts()) {
                        data.push_back (FontData(j));
                }
        }