Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2022-05-26 23:27:19 +0300
committerSergei Trofimovich <slyich@gmail.com>2022-05-27 11:02:15 +0300
commitb92d82d2b26426562a9c6b8a72ef5bd8035d5a10 (patch)
tree237d3355b660e43e174bc0a1ff6a5b0e7de6fd57
parentdeace4ca92e7a6fb96fa235b0107bf2b72a21190 (diff)
BUILD: Fix missing <cstdint> include
Without the change mumble build fails on this week's gcc-13 snapshot as: plugins/Module.h:13:9: error: 'uint64_t' does not name a type 13 | typedef uint64_t procptr_t; | ^~~~~~~~ plugins/Module.h:12:1: note: 'uint64_t' is defined in header '<cstdint>'; did you forget to '#include <cstdint>'? 11 | #include <unordered_map> +++ |+#include <cstdint> 12 | Co-authored-by: Davide Beatrici <github@davidebeatrici.dev>
-rw-r--r--plugins/Module.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/Module.h b/plugins/Module.h
index 3fbaabb79..454d9039e 100644
--- a/plugins/Module.h
+++ b/plugins/Module.h
@@ -6,6 +6,7 @@
#ifndef MODULE_H
#define MODULE_H
+#include <cstdint>
#include <set>
#include <string>
#include <unordered_map>