From 7e00b754f0c15dc0b847675852e3c76eceff803a Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Thu, 1 Dec 2022 02:47:10 +0000 Subject: [PATCH] tests/reflection_test.h: add missing include (#7680) Without the change build fails on weekly `gcc-13` snapshots as: In file included from /build/flatbuffers/tests/reflection_test.cpp:1: tests/reflection_test.h:9:57: error: 'uint8_t' has not been declared 9 | void ReflectionTest(const std::string& tests_data_path, uint8_t *flatbuf, size_t length); | ^~~~~~~ --- tests/reflection_test.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/reflection_test.h b/tests/reflection_test.h index d5148679d..090871963 100644 --- a/tests/reflection_test.h +++ b/tests/reflection_test.h @@ -1,6 +1,7 @@ #ifndef TESTS_REFLECTION_TEST_H #define TESTS_REFLECTION_TEST_H +#include #include namespace flatbuffers {