summaryrefslogtreecommitdiff
path: root/methods/basehttp.cc
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2024-02-20 15:45:19 +0000
committerJulian Andres Klode <jak@debian.org>2024-02-20 15:45:19 +0000
commite1eb204542c456732160a154225e743bc552b6b2 (patch)
treea5e7292b13ed1a77a443f367ea0fd7b2e66b0742 /methods/basehttp.cc
parent04ea92054757272c344afdf8d8e68046c7678b37 (diff)
parent40a75722c43ae24cb9a99d6730a3b25b65819c49 (diff)
Merge branch 'modernize-stdlib' into 'main'
Modernize standard library includes See merge request apt-team/apt!329
Diffstat (limited to 'methods/basehttp.cc')
-rw-r--r--methods/basehttp.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/methods/basehttp.cc b/methods/basehttp.cc
index 9ed308116..26b633cba 100644
--- a/methods/basehttp.cc
+++ b/methods/basehttp.cc
@@ -16,19 +16,19 @@
#include <apt-pkg/fileutl.h>
#include <apt-pkg/strutl.h>
+#include <cctype>
+#include <csignal>
+#include <cstdio>
+#include <cstdlib>
+#include <ctime>
#include <iostream>
#include <limits>
#include <map>
#include <string>
#include <string_view>
#include <vector>
-#include <ctype.h>
-#include <signal.h>
-#include <stdio.h>
-#include <stdlib.h>
#include <sys/stat.h>
#include <sys/time.h>
-#include <time.h>
#include <unistd.h>
#include "basehttp.h"