<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">https://github.com/abseil/abseil-cpp/pull/1739

From https://github.com/abseil/abseil-cpp/commit/809e5de7b92950849289236a5a09e9cb4f32c7b9 Mon Sep 17 00:00:00 2001
From: Christopher Fore &lt;csfore@posteo.net&gt;
Date: Mon, 5 Aug 2024 12:09:18 -0700
Subject: [PATCH] PR #1739: container/internal: Explicitly include &lt;cstdint&gt;

GCC 15 will no longer include &lt;cstdint&gt; by default, resulting in build failures in projects that do not explicitly include it.

--- a/extra/abseil/abseil-cpp-20230802.1/absl/container/internal/container_memory.h
+++ b/extra/abseil/abseil-cpp-20230802.1/absl/container/internal/container_memory.h
@@ -17,6 +17,7 @@
 
 #include &lt;cassert&gt;
 #include &lt;cstddef&gt;
+#include &lt;cstdint&gt;
 #include &lt;cstring&gt;
 #include &lt;memory&gt;
 #include &lt;new&gt;
</pre></body></html>