]> granicus.if.org Git - clang/commitdiff
Add missing standard includes. Patch by Joerg Sonnenberger!
authorNick Lewycky <nicholas@mxc.ca>
Sun, 19 Dec 2010 20:49:25 +0000 (20:49 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Sun, 19 Dec 2010 20:49:25 +0000 (20:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122194 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Expr.h
include/clang/Analysis/CFG.h
include/clang/Analysis/Support/BumpVector.h
include/clang/Basic/IdentifierTable.h
include/clang/Lex/LiteralSupport.h
lib/Basic/TargetInfo.cpp
lib/Lex/HeaderMap.cpp

index d46ef43ee60f13e83f5eafcda055bac00b54f2ab..e12f45b49ee51691338634b40a603d9c19465caa 100644 (file)
@@ -25,6 +25,7 @@
 #include "llvm/ADT/APFloat.h"
 #include "llvm/ADT/SmallVector.h"
 #include "llvm/ADT/StringRef.h"
+#include <cctype>
 #include <vector>
 
 namespace clang {
index e02d03d274c32a1664ebf94eac43f9f509a6b58d..c0f6ff10e80b8023039c503bccd7c30e0fc58eba 100644 (file)
@@ -22,6 +22,7 @@
 #include "clang/Analysis/Support/BumpVector.h"
 #include "clang/Basic/SourceLocation.h"
 #include <cassert>
+#include <iterator>
 
 namespace llvm {
   class raw_ostream;
index 020e858b9b6d41c64429f01269c9e96291e4d4e2..83532e62babe506698462c3edcb71bc95898e4ed 100644 (file)
@@ -24,6 +24,7 @@
 #include "llvm/ADT/PointerIntPair.h"
 #include <algorithm>
 #include <cstring>
+#include <iterator>
 #include <memory>
 
 namespace clang {
index 0013bd937c44633a7f29ad988f163cbdff60a8c8..f9af2a2da9567833f68c279f7592b24775430ce8 100644 (file)
@@ -22,8 +22,9 @@
 #include "llvm/ADT/SmallString.h"
 #include "llvm/ADT/OwningPtr.h"
 #include "llvm/Support/PointerLikeTypeTraits.h"
-#include <string>
 #include <cassert>
+#include <cctype>
+#include <string>
 
 namespace llvm {
   template <typename T> struct DenseMapInfo;
index 9d387bacc2297a30ba0f6a179574a024d2c9bc8e..bf2c06becdbf1c728ea8eb9711c485deb280c8ad 100644 (file)
 #ifndef CLANG_LITERALSUPPORT_H
 #define CLANG_LITERALSUPPORT_H
 
-#include <string>
 #include "llvm/ADT/APFloat.h"
 #include "llvm/ADT/SmallString.h"
 #include "llvm/Support/DataTypes.h"
+#include <cctype>
+#include <string>
 
 namespace clang {
 
index 1437a4ba015c2ba8e5444ef0872a046488e2db22..6a19abfb4ff910030e093e7e215f941042d2090a 100644 (file)
@@ -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;
 
index be3f7019212265f1d205209a6071a7a573ac5e20..e424f91655152a3549c5eaea9d3144177ae78b4e 100644 (file)
@@ -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;