From 135f729ca0a820ce91888ebffbbfc4a733d20a5b Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Thu, 19 Feb 2026 15:02:03 +0100 Subject: [PATCH] Fix builds with GCC 15 GCC 15 has more cleanups done in their include files, which results in some declarations to be not indirectly brought into translation unit anymore. In this case there were errors in prefetch.h header about uint32_t being undeclared. Let's include cstding header file to fix it. Signed-off-by: Krzesimir Nowak --- src/prefetch.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/prefetch.h b/src/prefetch.h index da778d54..3e915641 100644 --- a/src/prefetch.h +++ b/src/prefetch.h @@ -16,6 +16,7 @@ limitations under the License. #pragma once #include +#include #include #include