From 3d5a58b59158b6e467dff6d291945e0a77ddc196 Mon Sep 17 00:00:00 2001 From: "Morgan 'ARR\\!' Allen" Date: Thu, 3 Aug 2023 18:09:28 -0700 Subject: [PATCH] add cstdint behind ifdef __GNUC__ for compiling under alpine linux note: in other headers there is a mix of including the ifdef --- src/Base/Builder3D.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Base/Builder3D.h b/src/Base/Builder3D.h index 6047c696af..7dfa6b410a 100644 --- a/src/Base/Builder3D.h +++ b/src/Base/Builder3D.h @@ -26,6 +26,10 @@ // Std. configurations +#ifdef __GNUC__ +# include +#endif + #include #include #include