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:
authorRobert Adam <dev@robert-adam.de>2021-05-09 20:42:20 +0300
committerRobert Adam <dev@robert-adam.de>2021-05-10 15:50:44 +0300
commit178d462678c680572db4fd0169074b776fc000d8 (patch)
treea948066dc5e52d9f6aded39cddfb1c6680ec5c96 /src/ProcessResolver.h
parentb2798e81d418ae0a834497cb45c4dc43ea22671c (diff)
REFAC: Include cstdint instead of stdint.h
Diffstat (limited to 'src/ProcessResolver.h')
-rw-r--r--src/ProcessResolver.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ProcessResolver.h b/src/ProcessResolver.h
index bdee041d9..6799c0df6 100644
--- a/src/ProcessResolver.h
+++ b/src/ProcessResolver.h
@@ -7,7 +7,8 @@
#define MUMBLE_PROCESS_RESOLVER_H_
#include <QtCore/QVector>
-#include <stdint.h>
+
+#include <cstdint>
/// This ProcessResolver can be used to get a QVector of running process names and associated PIDs on multiple
/// platforms. This object is by no means thread-safe!