summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2016-11-11 04:00:59 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2016-11-11 04:00:59 +0000
commitca29721046f5f6f9bf03a4b3943db8147132b69b (patch)
treef4cdcba1e8943bfb297bb29062ee0467fcc68df8 /tools
parent6a1b55e1eafe4b5d59740924fdd0b52ee9e6b029 (diff)
llvm-strings: explicitly include cctype
Include the cctype header to try to fix windows bots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286558 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/llvm-strings/llvm-strings.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/llvm-strings/llvm-strings.cpp b/tools/llvm-strings/llvm-strings.cpp
index daabcd6e6d9..ccad061522f 100644
--- a/tools/llvm-strings/llvm-strings.cpp
+++ b/tools/llvm-strings/llvm-strings.cpp
@@ -22,6 +22,7 @@
#include "llvm/Support/PrettyStackTrace.h"
#include "llvm/Support/Program.h"
#include "llvm/Support/Signals.h"
+#include <cctype>
#include <string>
using namespace llvm;
@@ -74,7 +75,7 @@ class Strings {
}
}
}
- static_cast<bool>(E);
+ (void)static_cast<bool>(E);
}
public: