From ca29721046f5f6f9bf03a4b3943db8147132b69b Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Fri, 11 Nov 2016 04:00:59 +0000 Subject: [PATCH] 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 --- tools/llvm-strings/llvm-strings.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 #include using namespace llvm; @@ -74,7 +75,7 @@ class Strings { } } } - static_cast(E); + (void)static_cast(E); } public: -- 2.11.0