From 0c74b54399caf302e1c1986c4a0ea6affc3175ff Mon Sep 17 00:00:00 2001 From: Stephen Kitt Date: Sun, 25 Jun 2023 16:34:30 +0200 Subject: [PATCH] Include cstdint for uint16_t Starting with GCC 13, cstdint is included by fewer headers and needs to be explicitly included in help.h, so that uint16_t is defined. See https://gcc.gnu.org/gcc-13/porting_to.html for details. Signed-off-by: Stephen Kitt --- src/helpers/help.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/helpers/help.h b/src/helpers/help.h index 1d176f0..6f57ee7 100644 --- a/src/helpers/help.h +++ b/src/helpers/help.h @@ -17,6 +17,7 @@ #ifndef HELP_HELPER #define HELP_HELPER +#include #include namespace help {