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 /methods/http.cc | |
| 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 'methods/http.cc')
| -rw-r--r-- | methods/http.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/methods/http.cc b/methods/http.cc index a6d7511fd..85350785e 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -33,6 +33,7 @@ #include <cstdlib> #include <cstring> #include <iostream> +#include <iterator> #include <sstream> #include <arpa/inet.h> #include <sys/select.h> |
