1From 4851a6a722b228ecbfd9df255dab3d8f30bd84b9 Mon Sep 17 00:00:00 2001
2From: Malte Poll <1780588+malt3@users.noreply.github.com>
3Date: Mon, 22 Apr 2024 15:36:33 +0200
4Subject: [PATCH] nixpkgs: add cstdint to fix compilation under GCC 13
5
6https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
7---
8 src/datadog/parse_util.h | 1 +
9 1 file changed, 1 insertion(+)
10
11diff --git a/src/datadog/parse_util.h b/src/datadog/parse_util.h
12index c603286..c8e4e83 100644
13--- a/src/datadog/parse_util.h
14+++ b/src/datadog/parse_util.h
15@@ -2,6 +2,7 @@
16
17 // This component provides parsing-related miscellanea.
18
19+#include <cstdint>
20 #include <string>
21 #include <unordered_map>
22 #include <vector>
23--
242.42.0
25