Using different xml_writer_settings signature for old Boost versions
This commit is contained in:
parent
261a768e0d
commit
c679b8fb71
|
@ -68,7 +68,12 @@ void XMLExporter::exportShapes(const boost::filesystem::path& inputFilePath, con
|
||||||
mouthCueElement.put("<xmlattr>.end", formatDuration(timedShape.getEnd()));
|
mouthCueElement.put("<xmlattr>.end", formatDuration(timedShape.getEnd()));
|
||||||
}
|
}
|
||||||
|
|
||||||
write_xml(outputStream, tree, boost::property_tree::xml_writer_settings<string>(' ', 2));
|
#if BOOST_VERSION < 105600 // Support legacy syntax
|
||||||
|
using writer_setting = boost::property_tree::xml_writer_settings<char>;
|
||||||
|
#else
|
||||||
|
using writer_setting = boost::property_tree::xml_writer_settings<string>;
|
||||||
|
#endif
|
||||||
|
write_xml(outputStream, tree, writer_setting(' ', 2));
|
||||||
}
|
}
|
||||||
|
|
||||||
string escapeJSONString(const string& s) {
|
string escapeJSONString(const string& s) {
|
||||||
|
|
Loading…
Reference in New Issue