1From fb23e136f88a94aa497e8eb4369bb06435c2aaf8 Mon Sep 17 00:00:00 2001 2From: Bernd Kuhls <bernd.kuhls@t-online.de> 3Date: Sun, 26 Sep 2021 15:59:29 +0200 4Subject: [PATCH] impSurface.h: fix build with gcc11 5 6lib/Implicit/impSurface.h:44:9: error: 'size_t' does not name a type 7 44 | size_t vertex_data_size; 8 9Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> 10Upstream status: https://github.com/xbmc/screensavers.rsxs/pull/52 11--- 12 lib/Implicit/impSurface.h | 1 + 13 1 file changed, 1 insertion(+) 14 15diff --git a/lib/Implicit/impSurface.h b/lib/Implicit/impSurface.h 16index 388701aa..3319820e 100644 17--- a/lib/Implicit/impSurface.h 18+++ b/lib/Implicit/impSurface.h 19@@ -21,6 +21,7 @@ 20 #ifndef IMPSURFACE_H 21 #define IMPSURFACE_H 22 23+#include <cstddef> 24 #include <functional> 25 26 #ifdef WIN32 27-- 282.30.2 29 30