Blame 0001-iothread-Add-missing-cstdint-include.patch

Igor Raits a19b45
From 24e6cfa8097b8946db51f4076b59496a658fcbf5 Mon Sep 17 00:00:00 2001
Igor Raits a19b45
From: Igor Raits <i.gnatenko.brain@gmail.com>
Igor Raits a19b45
Date: Fri, 14 Feb 2020 20:45:19 +0100
Igor Raits a19b45
Subject: [PATCH] iothread: Add missing cstdint include
Igor Raits a19b45
Igor Raits a19b45
This will fix build with GCC 10+.
Igor Raits a19b45
Igor Raits a19b45
Fixes: https://github.com/fish-shell/fish-shell/issues/6604
Igor Raits a19b45
Signed-off-by: Igor Raits <i.gnatenko.brain@gmail.com>
Igor Raits a19b45
---
Igor Raits a19b45
 src/iothread.h | 1 +
Igor Raits a19b45
 1 file changed, 1 insertion(+)
Igor Raits a19b45
Igor Raits a19b45
diff --git a/src/iothread.h b/src/iothread.h
Igor Raits a19b45
index 5d91b2b34..64f783e87 100644
Igor Raits a19b45
--- a/src/iothread.h
Igor Raits a19b45
+++ b/src/iothread.h
Igor Raits a19b45
@@ -4,6 +4,7 @@
Igor Raits a19b45
 
Igor Raits a19b45
 #include <pthread.h>
Igor Raits a19b45
 
Igor Raits a19b45
+#include <cstdint>
Igor Raits a19b45
 #include <functional>
Igor Raits a19b45
 #include <type_traits>
Igor Raits a19b45
 
Igor Raits a19b45
-- 
Igor Raits a19b45
2.25.0
Igor Raits a19b45