diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-12-30 15:43:14 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-01-05 12:58:13 +0100 |
| commit | b03f2277a205ff7e7cdaa12c6e52322ea474a7af (patch) | |
| tree | d6067668105b2f0c6d0651bd1b8bd4186e0b8893 /src/lib/rough_duration.cc | |
| parent | e46ff5f1cf168fb73ea930f3e8469165e5f6644e (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/rough_duration.cc')
| -rw-r--r-- | src/lib/rough_duration.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/rough_duration.cc b/src/lib/rough_duration.cc index e6c03126c..f22e54ac8 100644 --- a/src/lib/rough_duration.cc +++ b/src/lib/rough_duration.cc @@ -26,6 +26,7 @@ LIBDCP_DISABLE_WARNINGS #include <libxml++/libxml++.h> LIBDCP_ENABLE_WARNINGS +#include <fmt/format.h> using std::string; @@ -52,7 +53,7 @@ RoughDuration::RoughDuration (cxml::ConstNodePtr node) void RoughDuration::as_xml (xmlpp::Element* node) const { - node->add_child_text(dcp::raw_convert<string>(duration)); + node->add_child_text(fmt::to_string(duration)); switch (unit) { case Unit::DAYS: |
