From 85f3145ea5b2f7d0ccfa63e5198267de06dc186a Mon Sep 17 00:00:00 2001 From: Arsalan Afzal Date: Sun, 9 Jul 2023 04:15:18 -0500 Subject: [PATCH] Fix mcut for GCC 13 GCC 13 requires an explicit #include for the std::uint32_t data type used by this file. Adding this include allows for the whole project to successfully be compiled on GCC 13 --- src/mcut/include/mcut/internal/hmesh.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mcut/include/mcut/internal/hmesh.h b/src/mcut/include/mcut/internal/hmesh.h index 24c742c8c..b8eb037ee 100644 --- a/src/mcut/include/mcut/internal/hmesh.h +++ b/src/mcut/include/mcut/internal/hmesh.h @@ -31,6 +31,7 @@ #include #include #include +#include template class descriptor_t_ {