1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
Author: Debian Deep Learning Team <debian-ai@lists.debian.org>
Last-Update: 2025-09-13
Description: fix gcc12 ftbfs
Forwarded: not-needed
---
tensorpipe/common/socket.h | 1 +
1 file changed, 1 insertion(+)
--- a/tensorpipe/common/socket.h
+++ b/tensorpipe/common/socket.h
@@ -13,6 +13,7 @@
#include <chrono>
#include <cstring>
#include <memory>
+#include <array>
#include <tensorpipe/common/defs.h>
#include <tensorpipe/common/error.h>
--- a/tensorpipe/common/defs.h
+++ b/tensorpipe/common/defs.h
@@ -12,6 +12,7 @@
#include <sys/types.h>
#include <unistd.h>
+#include <cstdint>
#include <cstring>
#include <ctime>
#include <functional>
|