diff options
| author | Biswapriyo Nath <nathbappai@gmail.com> | 2025-06-18 14:03:19 +0000 |
|---|---|---|
| committer | Biswapriyo Nath <nathbappai@gmail.com> | 2025-06-18 14:03:24 +0000 |
| commit | 06d0c12be00ee50c965830127f5812d2156681b1 (patch) | |
| tree | 7d5d8856c229882f3b2bcfd5c6b92e57f6240f61 /apt-pkg/solver3.h | |
| parent | 63919b628a9bf386136f708f06c1a8a7d4f09fca (diff) | |
Include standard headers to fix clang compiler error
This commit fixes the following compiler errors.
apt-pkg/acquire.cc:833:51: error: no template named 'function' in namespace 'std'
apt-pkg/contrib/error.cc:198:59: error: no member named 'front_inserter' in namespace 'std'
apt-pkg/solver3.h:44:22: error: no template named 'is_trivially_constructible_v' in namespace 'std'
methods/http.cc:1029:24: error: no member named 'inserter' in namespace 'std'
Diffstat (limited to 'apt-pkg/solver3.h')
| -rw-r--r-- | apt-pkg/solver3.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apt-pkg/solver3.h b/apt-pkg/solver3.h index 435c1c279..019a01b9f 100644 --- a/apt-pkg/solver3.h +++ b/apt-pkg/solver3.h @@ -11,6 +11,7 @@ #include <memory> #include <optional> #include <queue> +#include <type_traits> #include <vector> #include <apt-pkg/configuration.h> |
