archrelease: copy trunk to extra-x86_64
[arch-packages.git] / chromium / repos / extra-x86_64 / dawn-iwyu-add-cstdint-for-uint8_t.patch
blob9ca736232e28c3a599ae2facc9dbf9f3cc0c72e0
1 From a7423b3d8367a706c50ab787df2fe5eedb6c3c9f Mon Sep 17 00:00:00 2001
2 From: Stephan Hartmann <stha09@googlemail.com>
3 Date: Mon, 3 Apr 2023 13:51:27 +0000
4 Subject: [PATCH] IWYU: add cstdint for uint8_t
5 dawn::native::stream::ByteVectorSink
7 Bug: chromium:957519
8 Change-Id: I48436db0e203d793e47d717bfb75977c67145e94
9 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/126120
10 Reviewed-by: Corentin Wallez <cwallez@chromium.org>
11 Commit-Queue: Stephan Hartmann <stha09@googlemail.com>
12 Kokoro: Kokoro <noreply+kokoro@google.com>
13 ---
14 src/dawn/native/stream/ByteVectorSink.h | 1 +
15 1 file changed, 1 insertion(+)
17 diff --git a/src/dawn/native/stream/ByteVectorSink.h b/src/dawn/native/stream/ByteVectorSink.h
18 index 3b6016c082..5537820b1a 100644
19 --- a/src/dawn/native/stream/ByteVectorSink.h
20 +++ b/src/dawn/native/stream/ByteVectorSink.h
21 @@ -15,6 +15,7 @@
22 #ifndef SRC_DAWN_NATIVE_STREAM_BYTEVECTORSINK_H_
23 #define SRC_DAWN_NATIVE_STREAM_BYTEVECTORSINK_H_
25 +#include <cstdint>
26 #include <ostream>
27 #include <vector>