diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2010-12-19 20:49:25 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2010-12-19 20:49:25 +0000 |
commit | 403ba3522d1b1c97ae5fad81c1a2c4b3a754e1c1 (patch) | |
tree | a409013f45e3c1550d6af96c0e4c4f3db8ff7a0f /lib | |
parent | 276fdf408050d205f3a7f34c1e788224a67d2098 (diff) |
Add missing standard includes. Patch by Joerg Sonnenberger!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122194 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Basic/TargetInfo.cpp | 1 | ||||
-rw-r--r-- | lib/Lex/HeaderMap.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/Basic/TargetInfo.cpp b/lib/Basic/TargetInfo.cpp index 1437a4ba01..6a19abfb4f 100644 --- a/lib/Basic/TargetInfo.cpp +++ b/lib/Basic/TargetInfo.cpp @@ -15,6 +15,7 @@ #include "clang/Basic/LangOptions.h" #include "llvm/ADT/APFloat.h" #include "llvm/ADT/STLExtras.h" +#include <cctype> #include <cstdlib> using namespace clang; diff --git a/lib/Lex/HeaderMap.cpp b/lib/Lex/HeaderMap.cpp index be3f701921..e424f91655 100644 --- a/lib/Lex/HeaderMap.cpp +++ b/lib/Lex/HeaderMap.cpp @@ -18,6 +18,7 @@ #include "llvm/Support/DataTypes.h" #include "llvm/Support/MathExtras.h" #include "llvm/Support/MemoryBuffer.h" +#include <cctype> #include <cstdio> using namespace clang; |