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.
32 lines
692 B
32 lines
692 B
From ca740a87d86009badba0b4e767836eaee449e0a4 Mon Sep 17 00:00:00 2001
|
|
From: Fabian Homborg <FHomborg@gmail.com>
|
|
Date: Fri, 14 Feb 2020 20:41:17 +0100
|
|
Subject: [PATCH 2/4] iothread: Include cstdint
|
|
|
|
For uint64_t.
|
|
|
|
Needed for some configurations with glibc.
|
|
|
|
Fixes #6604.
|
|
|
|
(cherry picked from commit d80d39dd6a0576e5923184815832b0938356530c)
|
|
---
|
|
src/iothread.cpp | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/iothread.cpp b/src/iothread.cpp
|
|
index 21017fbe7..9e252260b 100644
|
|
--- a/src/iothread.cpp
|
|
+++ b/src/iothread.cpp
|
|
@@ -14,6 +14,7 @@
|
|
|
|
#include <atomic>
|
|
#include <condition_variable>
|
|
+#include <cstdint> // for uint64_t
|
|
#include <functional>
|
|
#include <queue>
|
|
|
|
--
|
|
2.25.0
|
|
|