Skip to content

Commit 8806b3c

Browse files
FredeHoeymartinetd
authored andcommitted
fix: add missing cstdint header
Build broke with gcc-15 due to `error: unknown type name 'uint8_t'` Adding cstdint fixes that.
1 parent 1653fa6 commit 8806b3c

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

src/flutter/shell/platform/common/client_wrapper/include/flutter/binary_messenger.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#ifndef FLUTTER_SHELL_PLATFORM_COMMON_CLIENT_WRAPPER_INCLUDE_FLUTTER_BINARY_MESSENGER_H_
66
#define FLUTTER_SHELL_PLATFORM_COMMON_CLIENT_WRAPPER_INCLUDE_FLUTTER_BINARY_MESSENGER_H_
77

8+
#include <cstdint>
89
#include <functional>
910
#include <string>
1011

src/flutter/shell/platform/common/client_wrapper/include/flutter/message_codec.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#ifndef FLUTTER_SHELL_PLATFORM_COMMON_CLIENT_WRAPPER_INCLUDE_FLUTTER_MESSAGE_CODEC_H_
66
#define FLUTTER_SHELL_PLATFORM_COMMON_CLIENT_WRAPPER_INCLUDE_FLUTTER_MESSAGE_CODEC_H_
77

8+
#include <cstdint>
89
#include <memory>
910
#include <string>
1011
#include <vector>

0 commit comments

Comments
 (0)