aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/system
diff options
context:
space:
mode:
authorGravatar Alexey Sokolov2018-06-10 00:16:59 +0100
committerGravatar IceN9ne2018-11-14 08:59:22 -0500
commite4a34cb9b7d59a08a162d642fbbca8c08804b3ff (patch)
treeb3c5524281b4714da91729ffd19c9abbc95f8c62 /src/modules/system
parentUse C++14 (diff)
downloadKVIrc-e4a34cb9b7d59a08a162d642fbbca8c08804b3ff.tar.gz
KVIrc-e4a34cb9b7d59a08a162d642fbbca8c08804b3ff.tar.bz2
KVIrc-e4a34cb9b7d59a08a162d642fbbca8c08804b3ff.zip
Apply all modernize-* fixes from clang-tidy except for modernize-use-auto
Diffstat (limited to 'src/modules/system')
-rw-r--r--src/modules/system/libkvisystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/system/libkvisystem.cpp b/src/modules/system/libkvisystem.cpp
index 42adb10b1..2abab2c10 100644
--- a/src/modules/system/libkvisystem.cpp
+++ b/src/modules/system/libkvisystem.cpp
@@ -41,7 +41,7 @@
#if !defined(COMPILE_ON_WINDOWS) && !defined(COMPILE_ON_MINGW)
#include <sys/utsname.h>
-#include <stdlib.h>
+#include <cstdlib>
#include <unistd.h>
#endif