diff options
| author | Luke Granger-Brown <git@lukegb.com> | 2022-01-16 19:37:25 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-01-16 21:00:42 +0100 |
| commit | b090dda8afed4f73349a5fa1e603a734171aa404 (patch) | |
| tree | 8db8f686aa4eacc747fc57bab55e95bea4be1f01 /src/lib/case_insensitive_sorter.cc | |
| parent | 09f8b57ac237c98eae648fc31093cf22495db740 (diff) | |
Add some missing header includes.
<memory> is needed for std::*_ptr, and <algorithm> for std::transform.
Diffstat (limited to 'src/lib/case_insensitive_sorter.cc')
| -rw-r--r-- | src/lib/case_insensitive_sorter.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/case_insensitive_sorter.cc b/src/lib/case_insensitive_sorter.cc index 4bf3c2d18..540b3cfe5 100644 --- a/src/lib/case_insensitive_sorter.cc +++ b/src/lib/case_insensitive_sorter.cc @@ -21,6 +21,7 @@ #include "case_insensitive_sorter.h" #include <boost/filesystem.hpp> +#include <algorithm> using std::string; |
