From: Heiko Becker Date: Wed, 18 Jan 2023 22:54:24 +0000 (+0100) Subject: Fix build with gcc 13 by including X-Git-Tag: 3.5~86^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F4375%2Fhead;p=rspamd.git Fix build with gcc 13 by including Like other versions before, gcc 13 moved some includes around and as a result is no longer transitively included. Explicitly include it for uint8_t. --- diff --git a/src/libserver/css/css_tokeniser.hxx b/src/libserver/css/css_tokeniser.hxx index 8091ad624..897489974 100644 --- a/src/libserver/css/css_tokeniser.hxx +++ b/src/libserver/css/css_tokeniser.hxx @@ -24,6 +24,7 @@ #include #include #include +#include #include "mem_pool.h" namespace rspamd::css { diff --git a/src/libserver/html/html_tag.hxx b/src/libserver/html/html_tag.hxx index ba086be82..cb83502f5 100644 --- a/src/libserver/html/html_tag.hxx +++ b/src/libserver/html/html_tag.hxx @@ -23,6 +23,7 @@ #include #include #include +#include #include "html_tags.h"