chromium-112-gcc-13-0001-openscreen.patch 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. https://chromium-review.googlesource.com/c/openscreen/+/4403253
  2. From f8d65c61edd2ba483f1f6167c8a5fe5ad53254ea Mon Sep 17 00:00:00 2001
  3. From: Stephan Hartmann <stha09@googlemail.com>
  4. Date: Wed, 05 Apr 2023 18:53:56 +0200
  5. Subject: [PATCH] IWYU: add stdint.h for various integer types
  6. Bug: chromium:957519
  7. Change-Id: If28a50f5b1c68fffd1ba546dea18b4d906a42bbf
  8. Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/4403253
  9. Reviewed-by: Mark Foltz <mfoltz@chromium.org>
  10. Commit-Queue: Mark Foltz <mfoltz@chromium.org>
  11. --- a/third_party/openscreen/src/discovery/dnssd/public/dns_sd_txt_record.h
  12. +++ b/third_party/openscreen/src/discovery/dnssd/public/dns_sd_txt_record.h
  13. @@ -5,6 +5,8 @@
  14. #ifndef DISCOVERY_DNSSD_PUBLIC_DNS_SD_TXT_RECORD_H_
  15. #define DISCOVERY_DNSSD_PUBLIC_DNS_SD_TXT_RECORD_H_
  16. +#include <stdint.h>
  17. +
  18. #include <functional>
  19. #include <map>
  20. #include <set>
  21. --- a/third_party/openscreen/src/util/base64.h
  22. +++ b/third_party/openscreen/src/util/base64.h
  23. @@ -5,6 +5,8 @@
  24. #ifndef UTIL_BASE64_H_
  25. #define UTIL_BASE64_H_
  26. +#include <stdint.h>
  27. +
  28. #include <string>
  29. #include <vector>