summaryrefslogtreecommitdiffstats
path: root/chromium-112-gcc-13-0001-openscreen.patch
blob: 6f3ca9be8e5353e4e1356d9611d1b7e16f2c61bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
https://chromium-review.googlesource.com/c/openscreen/+/4403253

From f8d65c61edd2ba483f1f6167c8a5fe5ad53254ea Mon Sep 17 00:00:00 2001
From: Stephan Hartmann <stha09@googlemail.com>
Date: Wed, 05 Apr 2023 18:53:56 +0200
Subject: [PATCH] IWYU: add stdint.h for various integer types

Bug: chromium:957519
Change-Id: If28a50f5b1c68fffd1ba546dea18b4d906a42bbf
Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/4403253
Reviewed-by: Mark Foltz <mfoltz@chromium.org>
Commit-Queue: Mark Foltz <mfoltz@chromium.org>
--- a/third_party/openscreen/src/discovery/dnssd/public/dns_sd_txt_record.h
+++ b/third_party/openscreen/src/discovery/dnssd/public/dns_sd_txt_record.h
@@ -5,6 +5,8 @@
 #ifndef DISCOVERY_DNSSD_PUBLIC_DNS_SD_TXT_RECORD_H_
 #define DISCOVERY_DNSSD_PUBLIC_DNS_SD_TXT_RECORD_H_
 
+#include <stdint.h>
+
 #include <functional>
 #include <map>
 #include <set>
--- a/third_party/openscreen/src/util/base64.h
+++ b/third_party/openscreen/src/util/base64.h
@@ -5,6 +5,8 @@
 #ifndef UTIL_BASE64_H_
 #define UTIL_BASE64_H_
 
+#include <stdint.h>
+
 #include <string>
 #include <vector>