commit | e3ba15c794839abe076e3e2bdf6c626396a19d4d | [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 | 30db2897925bb824e46951d059c175686c112543 | |
parent | 87b110ac24063a7a48a9d1273e6db596baab78a0 [diff] [blame] |
Add missing #include's to cctype when using isdigit/alpha/etc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192519 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/FileCheck/FileCheck.cpp b/utils/FileCheck/FileCheck.cpp index 43e8c79..77721f9 100644 --- a/utils/FileCheck/FileCheck.cpp +++ b/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>