chromium-112-gcc-13-0004-swiftshader.patch 915 B

12345678910111213141516171819202122232425
  1. https://swiftshader-review.googlesource.com/c/SwiftShader/+/71268
  2. From 3ecab9c1aa60d548d8efeae3a231f4df7cca6cc7 Mon Sep 17 00:00:00 2001
  3. From: Stephan Hartmann <stha09@googlemail.com>
  4. Date: Sun, 02 Apr 2023 20:53:20 +0200
  5. Subject: [PATCH] IWYU: add cstdint for uint64_t in sw::LRUCache
  6. Bug: chromium:957519
  7. Change-Id: I70970ceda50dfc38f3d149fea03e8a6a79a35934
  8. Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/71268
  9. Commit-Queue: Shahbaz Youssefi <syoussefi@google.com>
  10. Reviewed-by: Shahbaz Youssefi <syoussefi@google.com>
  11. Kokoro-Result: kokoro <noreply+kokoro@google.com>
  12. Tested-by: Shahbaz Youssefi <syoussefi@google.com>
  13. --- a/third_party/swiftshader/src/System/LRUCache.hpp
  14. +++ b/third_party/swiftshade/rsrc/System/LRUCache.hpp
  15. @@ -18,6 +18,7 @@
  16. #include "System/Debug.hpp"
  17. #include <cstddef>
  18. +#include <cstdint>
  19. #include <functional>
  20. #include <unordered_set>
  21. #include <vector>