aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/Stmt.h
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2012-12-01 17:12:56 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2012-12-01 17:12:56 +0000
commita93d0f280693b8418bc88cf7a8c93325f7fcf4c6 (patch)
tree0b8b52c03547e1688e5e0c36c244bef8490fe722 /include/clang/AST/Stmt.h
parent9852f58f50b4fc20914fbce5b4454135a42343f4 (diff)
downloadclang-a93d0f280693b8418bc88cf7a8c93325f7fcf4c6.tar.gz
Include pruning and general cleanup.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169095 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/Stmt.h')
-rw-r--r--include/clang/AST/Stmt.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/AST/Stmt.h b/include/clang/AST/Stmt.h
index f2a0e76982..98effbead5 100644
--- a/include/clang/AST/Stmt.h
+++ b/include/clang/AST/Stmt.h
@@ -15,16 +15,13 @@
#define LLVM_CLANG_AST_STMT_H
#include "clang/AST/DeclGroup.h"
-#include "clang/AST/PrettyPrinter.h"
#include "clang/AST/StmtIterator.h"
#include "clang/Basic/IdentifierTable.h"
#include "clang/Basic/LLVM.h"
#include "clang/Basic/SourceLocation.h"
-#include "clang/Lex/Token.h"
#include "llvm/ADT/ArrayRef.h"
-#include "llvm/ADT/SmallVector.h"
#include "llvm/Support/Compiler.h"
-#include "llvm/Support/raw_ostream.h"
+#include "llvm/Support/ErrorHandling.h"
#include <string>
namespace llvm {
@@ -39,10 +36,13 @@ namespace clang {
class IdentifierInfo;
class LabelDecl;
class ParmVarDecl;
+ class PrinterHelper;
+ struct PrintingPolicy;
class QualType;
class SourceManager;
class StringLiteral;
class SwitchStmt;
+ class Token;
class VarDecl;
//===--------------------------------------------------------------------===//