File: 0006-Add-stdint.h-include-for-gcc-15.patch

package info (click to toggle)
cppdap 1.58.0a-6~bpo12%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 904 kB
  • sloc: cpp: 6,590; ansic: 1,184; sh: 123; makefile: 16
file content (23 lines) | stat: -rw-r--r-- 664 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling@debian.org>
Date: Mon, 17 Feb 2025 21:52:11 +0100
Subject: Add <stdint.h> include for gcc-15

Origin: upstream, https://github.com/google/cppdap/commit/c69444ed76f7468b232ac4f989cb8f2bdc100185
Bug: https://github.com/google/cppdap/pull/133
Bug-Debian: https://bugs.debian.org/1096470
---
 include/dap/network.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/dap/network.h b/include/dap/network.h
index 9d14f6b..dd3e006 100644
--- a/include/dap/network.h
+++ b/include/dap/network.h
@@ -17,6 +17,7 @@
 
 #include <functional>
 #include <memory>
+#include <stdint.h>
 
 namespace dap {
 class ReaderWriter;