diff options
author | Joerg Sonnenberger <joerg@bec.de> | 2012-08-10 10:58:18 +0000 |
---|---|---|
committer | Joerg Sonnenberger <joerg@bec.de> | 2012-08-10 10:58:18 +0000 |
commit | 7094dee95f8c915d27097ac18b47d1ef31fd72ed (patch) | |
tree | 29e8fe8def626dddfe23cedb752594dac2918ed2 /lib/Basic/IdentifierTable.cpp | |
parent | 8ce9cca118b32604f481ad381eafab25b5798c9f (diff) |
Add missing cctype includes.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161660 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/IdentifierTable.cpp')
-rw-r--r-- | lib/Basic/IdentifierTable.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Basic/IdentifierTable.cpp b/lib/Basic/IdentifierTable.cpp index 92cc179b8e..4869ae1056 100644 --- a/lib/Basic/IdentifierTable.cpp +++ b/lib/Basic/IdentifierTable.cpp @@ -20,6 +20,7 @@ #include "llvm/ADT/StringSwitch.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Support/ErrorHandling.h" +#include <cctype> #include <cstdio> using namespace clang; |