aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristian Adam <cristian.adam@gmail.com>2019-10-09 23:12:48 +0100
committerSergio Martins <smartins@kde.org>2019-10-09 23:13:21 +0100
commit5e7a57c36dbb502bb5f0e9489d08208c35661c11 (patch)
tree88dfa10bd74730beee3f9ba8bef04bcbb1a6d05c
parent4b6e098ad02d28aacdea36dbe4806d2ec2c24cf6 (diff)
Fix build with MSVC
std::isspace is part of <cctype> REVIEW: D24513
-rw-r--r--src/clazy_stl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/clazy_stl.h b/src/clazy_stl.h
index 1b76b1fc..4dc222c3 100644
--- a/src/clazy_stl.h
+++ b/src/clazy_stl.h
@@ -26,6 +26,7 @@
#include <clang/AST/Stmt.h>
#include <algorithm>
+#include <cctype>
#include <sstream>
namespace clazy {