llvm-strings: explicitly include cctype

Include the cctype header to try to fix windows bots.

llvm-svn: 286558
This commit is contained in:
Saleem Abdulrasool
2016-11-11 04:00:59 +00:00
parent 82664d9d4c
commit 2dcea63b4d

View File

@@ -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: