From 96dc26a8be7cb1ca12afeb39911744471626c270 Mon Sep 17 00:00:00 2001 From: Huang Rui Date: Sat, 20 Jul 2024 20:52:17 +0800 Subject: [PATCH] Fix compile error for gcc 13.3.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - fix error: ‘uint32_t’ has not been declared Signed-off-by: Huang Rui --- include/gdscpp/gdsParser.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/gdscpp/gdsParser.hpp b/include/gdscpp/gdsParser.hpp index 3151a19..dc3fdf9 100644 --- a/include/gdscpp/gdsParser.hpp +++ b/include/gdscpp/gdsParser.hpp @@ -13,6 +13,7 @@ #define gdsParser #include +#include #include #include #include