diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-12-23 21:50:53 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-12-26 00:26:40 +0100 |
| commit | cec6ff92aef45c687085ecfc1059004407c18c57 (patch) | |
| tree | 8aace150067b6017498e037841a22465525b4a62 /src/lib/cross_windows.cc | |
| parent | 1e324c3cac09ac886293f755d0c1527ece2f5244 (diff) | |
Replace raw_convert<string> with fmt::to_string().
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..56ff73ec9 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 dcp::fmt::to_string(GetCurrentProcessId()); } |
