From fb5e7313802a32783cf0a3f1c28880f11e9588a5 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Fri, 2 Aug 2024 22:31:44 +0100 Subject: [PATCH] tests/featuremap/featuremaptest.cpp: add missing include Without the change `graphite` build fails on upcoming `gcc-15` as: tests/featuremap/featuremaptest.cpp:30:15: error: 'uint8_t' was not declared in this scope 30 | std::vector _ttf; | ^~~~~~~ tests/featuremap/featuremaptest.cpp:16:1: note: 'uint8_t' is defined in header ''; this is probably fixable by adding '#include ' 15 | #include "inc/Face.h" +++ |+#include 16 | #include "inc/FeatureMap.h" --- tests/featuremap/featuremaptest.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/featuremap/featuremaptest.cpp b/tests/featuremap/featuremaptest.cpp index 5eb240c8..d32c76fe 100644 --- a/tests/featuremap/featuremaptest.cpp +++ b/tests/featuremap/featuremaptest.cpp @@ -6,6 +6,7 @@ #include #include #include +#include #include #include