forked from pool/openucx
24 lines
700 B
Diff
24 lines
700 B
Diff
|
From 8f70e898b43d1bde1ff3fae56bf0ac5aac285997 Mon Sep 17 00:00:00 2001
|
||
|
From: Sam James <sam@gentoo.org>
|
||
|
Date: Fri, 9 Sep 2022 11:35:03 +0100
|
||
|
Subject: [PATCH] TEST/SOCKADDR: Add missing <cstdint> include for GCC 13
|
||
|
|
||
|
Closes: https://github.com/openucx/ucx/issues/8347
|
||
|
Signed-off-by: Sam James <sam@gentoo.org>
|
||
|
---
|
||
|
test/apps/sockaddr/sa_util.h | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
diff --git a/test/apps/sockaddr/sa_util.h b/test/apps/sockaddr/sa_util.h
|
||
|
index 90c9649443f..c77ccc9a849 100644
|
||
|
--- a/test/apps/sockaddr/sa_util.h
|
||
|
+++ b/test/apps/sockaddr/sa_util.h
|
||
|
@@ -7,6 +7,7 @@
|
||
|
#ifndef SA_UTIL_H_
|
||
|
#define SA_UTIL_H_
|
||
|
|
||
|
+#include <cstdint>
|
||
|
#include <iostream>
|
||
|
#include <sstream>
|
||
|
#include <string>
|