From c3b8084557bc5bcb584fef810f34dfe619957acb Mon Sep 17 00:00:00 2001 From: David Fries Date: Fri, 30 Aug 2024 20:09:07 -0500 Subject: [PATCH] PartsView.h Included cstddef for size_t g++ (Debian 12.2.0-14) 12.2.0 Did not have the definition of size_t which was failing the compile. --- include/geometry/PartsView.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/geometry/PartsView.h b/include/geometry/PartsView.h index 6cfb9bf4c6..e3881d9a3f 100644 --- a/include/geometry/PartsView.h +++ b/include/geometry/PartsView.h @@ -5,6 +5,7 @@ #define GEOMETRY_PARTS_VIEW_H #include +#include //For size_t. namespace cura {