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/cross_windows.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/cross_windows.cc')
| -rw-r--r-- | src/lib/cross_windows.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/cross_windows.cc b/src/lib/cross_windows.cc index 9181b6c8a..13d52ee3b 100644 --- a/src/lib/cross_windows.cc +++ b/src/lib/cross_windows.cc @@ -31,11 +31,11 @@ #include "util.h" #include <dcp/file.h> #include <dcp/filesystem.h> -#include <dcp/raw_convert.h> #include <glib.h> extern "C" { #include <libavformat/avio.h> } +#include <fmt/format.h> #include <boost/algorithm/string.hpp> #include <boost/dll/runtime_symbol_info.hpp> #include <windows.h> @@ -660,7 +660,7 @@ disk_write_finished () string dcpomatic::get_process_id () { - return dcp::raw_convert<string>(GetCurrentProcessId()); + return fmt::to_string(GetCurrentProcessId()); } |
