From: Linux User Date: Mon, 20 Jul 2026 09:43:22 +0000 (+0000) Subject: fix: Include algorithm header (#1754) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3cead85a51b30663130dface477f560f96aeeab5;p=thirdparty%2Fccache.git fix: Include algorithm header (#1754) This fixes a build error with clang 23: error: no member named 'any_of' in namespace 'std'; did you mean '__any_of'? --- diff --git a/src/ccache/storage/storage.cpp b/src/ccache/storage/storage.cpp index a4c5574b..7e73b72a 100644 --- a/src/ccache/storage/storage.cpp +++ b/src/ccache/storage/storage.cpp @@ -48,6 +48,7 @@ #include +#include #include #include #include diff --git a/src/ccache/util/path.cpp b/src/ccache/util/path.cpp index e8a7bb71..64151c26 100644 --- a/src/ccache/util/path.cpp +++ b/src/ccache/util/path.cpp @@ -23,6 +23,8 @@ #include #include +#include + #ifdef _WIN32 const char k_dev_null_path[] = "nul:"; #else