You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
664 B
29 lines
664 B
From 24e6cfa8097b8946db51f4076b59496a658fcbf5 Mon Sep 17 00:00:00 2001
|
|
From: Igor Raits <i.gnatenko.brain@gmail.com>
|
|
Date: Fri, 14 Feb 2020 20:45:19 +0100
|
|
Subject: [PATCH] iothread: Add missing cstdint include
|
|
|
|
This will fix build with GCC 10+.
|
|
|
|
Fixes: https://github.com/fish-shell/fish-shell/issues/6604
|
|
Signed-off-by: Igor Raits <i.gnatenko.brain@gmail.com>
|
|
---
|
|
src/iothread.h | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/iothread.h b/src/iothread.h
|
|
index 5d91b2b34..64f783e87 100644
|
|
--- a/src/iothread.h
|
|
+++ b/src/iothread.h
|
|
@@ -4,6 +4,7 @@
|
|
|
|
#include <pthread.h>
|
|
|
|
+#include <cstdint>
|
|
#include <functional>
|
|
#include <type_traits>
|
|
|
|
--
|
|
2.25.0
|
|
|