From af39262892dd4c65329f71b68888e72ea9081ecf Mon Sep 17 00:00:00 2001 From: Simon Hauser Date: Fri, 4 Oct 2024 19:51:52 +0200 Subject: [PATCH] fix: compile error with gcc13 Without this i am getting `'uint32_t' is not a member of 'std'`. See also https://gcc.gnu.org/gcc-13/porting_to.html "Header dependency changes". --- source/Setting.h | 1 + 1 file changed, 1 insertion(+) diff --git a/source/Setting.h b/source/Setting.h index 3e77b78aef..1b3c443366 100644 --- a/source/Setting.h +++ b/source/Setting.h @@ -5,6 +5,7 @@ #ifndef ROADRUNNER_SETTING_H #define ROADRUNNER_SETTING_H +#include #include #include #include