From: Saleem Abdulrasool Date: Fri, 11 Nov 2016 04:00:59 +0000 (+0000) Subject: llvm-strings: explicitly include cctype X-Git-Tag: android-x86-7.1-r4~24670 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=ca29721046f5f6f9bf03a4b3943db8147132b69b;p=android-x86%2Fexternal-llvm.git 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 --- 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: