Blob Blame History Raw
From ebf8bc0db4a089c575e9208c07fd8ae8c869c7da Mon Sep 17 00:00:00 2001
From: Fabian Homborg <FHomborg@gmail.com>
Date: Fri, 14 Feb 2020 20:51:54 +0100
Subject: [PATCH 3/4] iothread: include cstdint, correctly

Yeah, this was needed in the *header*.

God I hate headers.

Fixes #6604, for real this time

(cherry picked from commit f79ff7209627cc12e55cadf8b275a00ed4a378e7)
---
 src/iothread.cpp | 1 -
 src/iothread.h   | 1 +
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/iothread.cpp b/src/iothread.cpp
index 9e252260b..21017fbe7 100644
--- a/src/iothread.cpp
+++ b/src/iothread.cpp
@@ -14,7 +14,6 @@
 
 #include <atomic>
 #include <condition_variable>
-#include <cstdint> // for uint64_t
 #include <functional>
 #include <queue>
 
diff --git a/src/iothread.h b/src/iothread.h
index 5d91b2b34..bdb045dfc 100644
--- a/src/iothread.h
+++ b/src/iothread.h
@@ -4,6 +4,7 @@
 
 #include <pthread.h>
 
+#include <cstdint> // for uint64_t
 #include <functional>
 #include <type_traits>
 
-- 
2.25.0