aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
authorGravatar IceN9ne2019-01-01 22:54:07 -0500
committerGravatar GitHub2019-01-01 22:54:07 -0500
commitacd1ec8f882bd072f9f0af3c6e6c2f4c7f30afd4 (patch)
treeae6b374447bec9a303973dbc2b40de0a6db9da86 /src/modules
parentKviTextIconWindow: Update code (diff)
parentAdd release note to README (diff)
downloadKVIrc-acd1ec8f882bd072f9f0af3c6e6c2f4c7f30afd4.tar.gz
KVIrc-acd1ec8f882bd072f9f0af3c6e6c2f4c7f30afd4.tar.bz2
KVIrc-acd1ec8f882bd072f9f0af3c6e6c2f4c7f30afd4.zip
Merge branch 'master' into cpp17
Diffstat (limited to 'src/modules')
-rwxr-xr-xsrc/modules/language/detector/build_detector.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/language/detector/build_detector.pl b/src/modules/language/detector/build_detector.pl
index f78241814..df702ca5a 100755
--- a/src/modules/language/detector/build_detector.pl
+++ b/src/modules/language/detector/build_detector.pl
@@ -95,10 +95,10 @@ print OUTPUT "//\n";
print OUTPUT "// DO NOT EDIT THIS FILE: Edit detector/build_detector.pl instead!\n";
print OUTPUT "//\n";
print OUTPUT "\n";
-print OUTPUT "#include <stdlib.h>\n";
-print OUTPUT "#include <stdio.h>\n";
-print OUTPUT "#include <string.h>\n";
-print OUTPUT "#include <ctype.h>\n";
+print OUTPUT "#include <cstdlib>\n";
+print OUTPUT "#include <cstdio>\n";
+print OUTPUT "#include <cstring>\n";
+print OUTPUT "#include <cctype>\n";
print OUTPUT "\n";
print OUTPUT "#include \"detector.h\"\n";
print OUTPUT "\n";