summaryrefslogtreecommitdiff
path: root/src/lib/string_text_file_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-12-30 15:43:14 +0100
committerCarl Hetherington <cth@carlh.net>2025-01-05 12:58:13 +0100
commitb03f2277a205ff7e7cdaa12c6e52322ea474a7af (patch)
treed6067668105b2f0c6d0651bd1b8bd4186e0b8893 /src/lib/string_text_file_content.cc
parente46ff5f1cf168fb73ea930f3e8469165e5f6644e (diff)
Bump libdcp for raw_convert changes.
raw_convert<string> is gone, so here we use fmt::{to_string,format} instead. Other raw_converts now use fast_float.
Diffstat (limited to 'src/lib/string_text_file_content.cc')
-rw-r--r--src/lib/string_text_file_content.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/string_text_file_content.cc b/src/lib/string_text_file_content.cc
index 4f7fbb241..6b5492af9 100644
--- a/src/lib/string_text_file_content.cc
+++ b/src/lib/string_text_file_content.cc
@@ -26,9 +26,9 @@
#include "string_text_file_content.h"
#include "text_content.h"
#include "util.h"
-#include <dcp/raw_convert.h>
#include <fontconfig/fontconfig.h>
#include <libxml++/libxml++.h>
+#include <fmt/format.h>
#include <iostream>
@@ -41,7 +41,6 @@ using std::make_shared;
using std::shared_ptr;
using std::string;
using boost::optional;
-using dcp::raw_convert;
using namespace dcpomatic;
@@ -131,7 +130,7 @@ StringTextFileContent::as_xml(xmlpp::Element* element, bool with_paths, PathBeha
only_text()->as_xml(element);
}
- cxml::add_text_child(element, "Length", raw_convert<string>(_length.get()));
+ cxml::add_text_child(element, "Length", fmt::to_string(_length.get()));
}