Added missing include to <cctype> for 'std::isalnum'
authorRaphael Isemann <teemperor@gmail.com>
Thu, 30 Aug 2018 20:14:22 +0000 (20:14 +0000)
committerRaphael Isemann <teemperor@gmail.com>
Thu, 30 Aug 2018 20:14:22 +0000 (20:14 +0000)
Should fix the failing Windows bots.

llvm-svn: 341109

lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp

index c79cb18..9c913f5 100644 (file)
@@ -9,6 +9,7 @@
 
 // C Includes
 // C++ Includes
+#include <cctype> // for alnum
 // Other libraries and framework includes
 #include "clang/AST/ASTContext.h"
 #include "clang/AST/ASTDiagnostic.h"