diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-01-20 19:23:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-20 19:23:10 +0000 |
commit | ea4d03b6f98f373e9c1fa4f96af69b60765e6194 (patch) | |
tree | 6e55047664310a775dc33bb82a0c870c320a86c5 | |
parent | 92c8906c45fdf022dc6a79c42b98d09039cf60d1 (diff) | |
parent | 0a916c632e18e6686e1a2256d5ef2fe1a1cc239f (diff) | |
download | rspamd-ea4d03b6f98f373e9c1fa4f96af69b60765e6194.tar.gz rspamd-ea4d03b6f98f373e9c1fa4f96af69b60765e6194.zip |
Merge pull request #4375 from heirecka/fix-build-with-gcc13
Fix build with gcc 13 by including <cstdint>
-rw-r--r-- | src/libserver/css/css_tokeniser.hxx | 1 | ||||
-rw-r--r-- | src/libserver/html/html_tag.hxx | 1 |
2 files changed, 2 insertions, 0 deletions
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 <variant> #include <list> #include <functional> +#include <cstdint> #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 <variant> #include <vector> #include <optional> +#include <cstdint> #include "html_tags.h" |