commit | 981af0021b9144cb08d605a404e9ea68b2e29b9e | [log] [tgz] |
---|---|---|
author | Will Dietz <wdietz2@illinois.edu> | Sat Oct 12 00:55:57 2013 +0000 |
committer | Will Dietz <wdietz2@illinois.edu> | Sat Oct 12 00:55:57 2013 +0000 |
tree | ec5c5f736ba7bad300bd0b24dbc117e917e09afe | |
parent | 05d7084ce9f8087ff3035412d5e3e1c790ec484d [diff] [blame] |
Add missing #include's to cctype when using isdigit/alpha/etc. llvm-svn: 192519
diff --git a/llvm/utils/FileCheck/FileCheck.cpp b/llvm/utils/FileCheck/FileCheck.cpp index 43e8c79..77721f9 100644 --- a/llvm/utils/FileCheck/FileCheck.cpp +++ b/llvm/utils/FileCheck/FileCheck.cpp
@@ -29,6 +29,7 @@ #include "llvm/Support/raw_ostream.h" #include "llvm/Support/system_error.h" #include <algorithm> +#include <cctype> #include <map> #include <string> #include <vector>