diff options
Diffstat (limited to 'src/lib/cross_unix.cc')
| -rw-r--r-- | src/lib/cross_unix.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/cross_unix.cc b/src/lib/cross_unix.cc index 743c11980..0327c8136 100644 --- a/src/lib/cross_unix.cc +++ b/src/lib/cross_unix.cc @@ -20,13 +20,13 @@ #include "cross.h" -#include <dcp/raw_convert.h> #include <dcp/warnings.h> LIBDCP_DISABLE_WARNINGS extern "C" { #include <libavformat/avio.h> } LIBDCP_ENABLE_WARNINGS +#include <fmt/format.h> using std::string; @@ -80,7 +80,7 @@ running_32_on_64 () string dcpomatic::get_process_id () { - return dcp::raw_convert<string>(getpid()); + return fmt::to_string(getpid()); } |
