diff options
| author | 2025-03-22 17:13:09 +0000 | |
|---|---|---|
| committer | 2025-03-22 17:16:28 +0000 | |
| commit | 0aeb615182cf877f08dd218b7de9aae4a6e074ce (patch) | |
| tree | a1aa72ddc024bf30303808836126188339d6c153 /include | |
| parent | Migrate configparser/configreader away from stringstream. (diff) | |
Only include <sstream> from files that actually use it.
Diffstat (limited to 'include')
| -rw-r--r-- | include/inspircd.h | 1 | ||||
| -rw-r--r-- | include/modules/httpd.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index 89f96b49c..9da420f0e 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -45,7 +45,6 @@ #include <map> #include <optional> #include <set> -#include <sstream> #include <string> #include <string_view> #include <unordered_map> diff --git a/include/modules/httpd.h b/include/modules/httpd.h index c1cc17b19..c590746c7 100644 --- a/include/modules/httpd.h +++ b/include/modules/httpd.h @@ -26,6 +26,8 @@ #pragma once +#include <sstream> + #include "timeutils.h" class HTTPQueryParameters final |
