From 95f56d9e0576e14dd55eca1fdb2b8d499be17d91 Mon Sep 17 00:00:00 2001 From: Frede Hoey Braendstrup Date: Fri, 23 Jan 2026 14:59:47 +0100 Subject: [PATCH] fix: add missing cstdint header Build broke with gcc-15 due to `error: unknown type name 'uint8_t'` Adding cstdint fixes that. --- AUTHORS | 1 + .../common/client_wrapper/include/flutter/binary_messenger.h | 1 + .../common/client_wrapper/include/flutter/message_codec.h | 1 + 3 files changed, 3 insertions(+) diff --git a/AUTHORS b/AUTHORS index 6a816263..b521920a 100644 --- a/AUTHORS +++ b/AUTHORS @@ -18,3 +18,4 @@ Sebastian Urban Athaariq Ardhiansyah Anton Sakhon Bari Rao +Frede Emil Hoey Braendstrup diff --git a/src/flutter/shell/platform/common/client_wrapper/include/flutter/binary_messenger.h b/src/flutter/shell/platform/common/client_wrapper/include/flutter/binary_messenger.h index d552b499..553ba0bb 100644 --- a/src/flutter/shell/platform/common/client_wrapper/include/flutter/binary_messenger.h +++ b/src/flutter/shell/platform/common/client_wrapper/include/flutter/binary_messenger.h @@ -5,6 +5,7 @@ #ifndef FLUTTER_SHELL_PLATFORM_COMMON_CLIENT_WRAPPER_INCLUDE_FLUTTER_BINARY_MESSENGER_H_ #define FLUTTER_SHELL_PLATFORM_COMMON_CLIENT_WRAPPER_INCLUDE_FLUTTER_BINARY_MESSENGER_H_ +#include #include #include diff --git a/src/flutter/shell/platform/common/client_wrapper/include/flutter/message_codec.h b/src/flutter/shell/platform/common/client_wrapper/include/flutter/message_codec.h index c84d25f2..0bd0287e 100644 --- a/src/flutter/shell/platform/common/client_wrapper/include/flutter/message_codec.h +++ b/src/flutter/shell/platform/common/client_wrapper/include/flutter/message_codec.h @@ -5,6 +5,7 @@ #ifndef FLUTTER_SHELL_PLATFORM_COMMON_CLIENT_WRAPPER_INCLUDE_FLUTTER_MESSAGE_CODEC_H_ #define FLUTTER_SHELL_PLATFORM_COMMON_CLIENT_WRAPPER_INCLUDE_FLUTTER_MESSAGE_CODEC_H_ +#include #include #include #include