From 881560a0fe43be1e288b9147ef0017aa8106ae25 Mon Sep 17 00:00:00 2001 From: Sven van Haastregt Date: Fri, 12 Jul 2024 17:23:59 +0200 Subject: [PATCH] printf: add missing cstdint include (#2011) Since GCC 13 some headers are no longer included transitively through C++ Standard Library headers. Signed-off-by: Sven van Haastregt --- test_conformance/printf/test_printf.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test_conformance/printf/test_printf.cpp b/test_conformance/printf/test_printf.cpp index 424b42d3f..3d539ed57 100644 --- a/test_conformance/printf/test_printf.cpp +++ b/test_conformance/printf/test_printf.cpp @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include