diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-07-09 21:54:03 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-07-10 20:50:32 +0200 |
| commit | 9e90111e53a0b0739d0789afd26f29e63f803917 (patch) | |
| tree | 5df75d925be7a016b19adddf1e710177e254913d | |
| parent | 727c1aa7da8b325dfa38c8443b1dd356acaf6ec3 (diff) | |
Add some includes of fmt/format.h.
| -rw-r--r-- | src/lib/dcp_text_track.cc | 1 | ||||
| -rw-r--r-- | src/lib/dcpomatic_log.h | 1 | ||||
| -rw-r--r-- | src/lib/environment_info.cc | 1 | ||||
| -rw-r--r-- | src/lib/exceptions.h | 1 | ||||
| -rw-r--r-- | src/lib/variant.cc | 1 | ||||
| -rw-r--r-- | test/audio_mapping_test.cc | 5 | ||||
| -rw-r--r-- | test/image_filename_sorter_test.cc | 3 |
7 files changed, 10 insertions, 3 deletions
diff --git a/src/lib/dcp_text_track.cc b/src/lib/dcp_text_track.cc index ec1d6828b..2d9226bb8 100644 --- a/src/lib/dcp_text_track.cc +++ b/src/lib/dcp_text_track.cc @@ -21,6 +21,7 @@ #include "dcp_text_track.h" #include "compose.hpp" +#include <fmt/format.h> #include <string> #include "i18n.h" diff --git a/src/lib/dcpomatic_log.h b/src/lib/dcpomatic_log.h index 2372c8d01..0bde2ee8e 100644 --- a/src/lib/dcpomatic_log.h +++ b/src/lib/dcpomatic_log.h @@ -21,6 +21,7 @@ #include "log.h" #include "compose.hpp" +#include <fmt/format.h> /** The current log; set up by the front-ends when they have a Film to log into */ diff --git a/src/lib/environment_info.cc b/src/lib/environment_info.cc index d6592d126..04aed9eba 100644 --- a/src/lib/environment_info.cc +++ b/src/lib/environment_info.cc @@ -36,6 +36,7 @@ extern "C" { #include <libavutil/pixfmt.h> } LIBDCP_ENABLE_WARNINGS +#include <fmt/format.h> #include <boost/thread.hpp> #include "i18n.h" diff --git a/src/lib/exceptions.h b/src/lib/exceptions.h index dae64fb5d..31b57c92b 100644 --- a/src/lib/exceptions.h +++ b/src/lib/exceptions.h @@ -32,6 +32,7 @@ extern "C" { #include <libavutil/pixfmt.h> } +#include <fmt/format.h> #include <boost/filesystem.hpp> #include <boost/optional.hpp> #include <sqlite3.h> diff --git a/src/lib/variant.cc b/src/lib/variant.cc index a9dc56307..7eed60b8f 100644 --- a/src/lib/variant.cc +++ b/src/lib/variant.cc @@ -20,6 +20,7 @@ #include "variant.h" +#include <fmt/format.h> static char const* _dcpomatic = "DCP-o-matic"; diff --git a/test/audio_mapping_test.cc b/test/audio_mapping_test.cc index 22412b260..0b403a492 100644 --- a/test/audio_mapping_test.cc +++ b/test/audio_mapping_test.cc @@ -25,10 +25,11 @@ */ -#include <boost/test/unit_test.hpp> #include "lib/audio_mapping.h" -#include "lib/constants.h" #include "lib/compose.hpp" +#include "lib/constants.h" +#include <boost/test/unit_test.hpp> +#include <fmt/format.h> using std::list; diff --git a/test/image_filename_sorter_test.cc b/test/image_filename_sorter_test.cc index 29b550753..c4b2622a8 100644 --- a/test/image_filename_sorter_test.cc +++ b/test/image_filename_sorter_test.cc @@ -25,8 +25,9 @@ */ -#include "lib/image_filename_sorter.h" #include "lib/compose.hpp" +#include "lib/image_filename_sorter.h" +#include <fmt/format.h> #include <boost/test/unit_test.hpp> #include <algorithm> #include <random> |
