diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-07-09 22:37:25 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-07-10 20:50:32 +0200 |
| commit | 392d4e0acfa5e6e7fe162bdbf30127e162402e02 (patch) | |
| tree | ca5a9ef35dcaccdb26522828465bce6f82d626c4 /src | |
| parent | 62c34b28567a097e8f22576e7d7891bd3dbe0ac0 (diff) | |
Add missing #includes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/collator.cc | 1 | ||||
| -rw-r--r-- | src/lib/unzipper.cc | 1 | ||||
| -rw-r--r-- | src/lib/uploader.cc | 5 | ||||
| -rw-r--r-- | src/lib/variant.h | 1 |
4 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/collator.cc b/src/lib/collator.cc index 21e89fd78..7fc846ebe 100644 --- a/src/lib/collator.cc +++ b/src/lib/collator.cc @@ -29,6 +29,7 @@ #include <unicode/ustring.h> #include <fmt/format.h> #include <boost/scoped_array.hpp> +#include <algorithm> #include <cstring> #include <vector> diff --git a/src/lib/unzipper.cc b/src/lib/unzipper.cc index 9dc936111..d0f30f01f 100644 --- a/src/lib/unzipper.cc +++ b/src/lib/unzipper.cc @@ -22,6 +22,7 @@ #include "dcpomatic_assert.h" #include "exceptions.h" #include "unzipper.h" +#include <dcp/array_data.h> #include <dcp/filesystem.h> #include <dcp/scope_guard.h> #include <zip.h> diff --git a/src/lib/uploader.cc b/src/lib/uploader.cc index 8ed2a73f8..d21f7ff66 100644 --- a/src/lib/uploader.cc +++ b/src/lib/uploader.cc @@ -22,13 +22,14 @@ #include "uploader.h" #include "dcpomatic_assert.h" #include "compose.hpp" +#include <memory> #include "i18n.h" -using std::string; -using std::shared_ptr; using std::function; +using std::shared_ptr; +using std::string; Uploader::Uploader (function<void (string)> set_status, function<void (float)> set_progress) diff --git a/src/lib/variant.h b/src/lib/variant.h index 9a42f3eca..affee08a0 100644 --- a/src/lib/variant.h +++ b/src/lib/variant.h @@ -20,6 +20,7 @@ #include "compose.hpp" +#include <string> namespace variant |
