From ddbe41300f847f79ac02284fd038ad756115d201 Mon Sep 17 00:00:00 2001 From: Sam James Date: Thu, 3 Oct 2024 01:36:02 +0100 Subject: [PATCH] utils: Add `` (#968) utils uses `uint64_t` without including `` which fails to build w/ GCC 15 after a change in libstdc++ [0] [0] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=3a817a4a5a6d94da9127af3be9f84a74e3076ee2 --- src/utils.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils.hh b/src/utils.hh index 57a3e126..e99d8dd8 100644 --- a/src/utils.hh +++ b/src/utils.hh @@ -6,6 +6,7 @@ #include #include +#include #include #include #include