commit | 42cf26883e2ec11d5e3d5ac5016e4f8e4861c92e | [log] [tgz] |
---|---|---|
author | Joerg Sonnenberger <joerg@bec.de> | Fri Aug 10 10:58:18 2012 +0000 |
committer | Joerg Sonnenberger <joerg@bec.de> | Fri Aug 10 10:58:18 2012 +0000 |
tree | 13c83ee97fb593e37f852e1f43db07d9de404055 | |
parent | 8c02a241f4205f2b82e6981af26ac887e9073c08 [diff] |
Add missing cctype includes. llvm-svn: 161660
diff --git a/clang/lib/Frontend/LayoutOverrideSource.cpp b/clang/lib/Frontend/LayoutOverrideSource.cpp index eb7865e..e023250 100644 --- a/clang/lib/Frontend/LayoutOverrideSource.cpp +++ b/clang/lib/Frontend/LayoutOverrideSource.cpp
@@ -9,6 +9,7 @@ #include "clang/Frontend/LayoutOverrideSource.h" #include "clang/AST/Decl.h" #include "llvm/Support/raw_ostream.h" +#include <cctype> #include <fstream> #include <string>
diff --git a/clang/lib/Frontend/PrintPreprocessedOutput.cpp b/clang/lib/Frontend/PrintPreprocessedOutput.cpp index 7e0bc6b..5311ed5 100644 --- a/clang/lib/Frontend/PrintPreprocessedOutput.cpp +++ b/clang/lib/Frontend/PrintPreprocessedOutput.cpp
@@ -26,6 +26,7 @@ #include "llvm/ADT/StringRef.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Support/ErrorHandling.h" +#include <cctype> #include <cstdio> using namespace clang;
diff --git a/clang/lib/Frontend/TextDiagnostic.cpp b/clang/lib/Frontend/TextDiagnostic.cpp index 302621a..9bb3e1d 100644 --- a/clang/lib/Frontend/TextDiagnostic.cpp +++ b/clang/lib/Frontend/TextDiagnostic.cpp
@@ -20,6 +20,7 @@ #include "llvm/ADT/SmallString.h" #include "llvm/ADT/StringExtras.h" #include <algorithm> +#include <cctype> using namespace clang;
diff --git a/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp b/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp index 71c3f6b..a9378a1 100644 --- a/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp +++ b/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
@@ -20,6 +20,7 @@ #include "llvm/ADT/SmallString.h" #include "llvm/Support/Regex.h" #include "llvm/Support/raw_ostream.h" +#include <cctype> using namespace clang; typedef VerifyDiagnosticConsumer::Directive Directive;