aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/StmtCXX.h
AgeCommit message (Expand)Author
2013-01-12Remove useless 'llvm::' qualifier from names like StringRef and others that areDmitri Gribenko
2013-01-12Add missing includes and forward declarations so that headers don't depend onDmitri Gribenko
2012-12-29ArrayRefize CXXTryStmt.Nico Weber
2012-12-25Fix for PR12222.Erik Verbruggen
2012-10-11Remove pointless classof()'s.Sean Silva
2012-03-09[AST/etc] Mark {getSourceRange(),getStartLoc(),getEndLoc()} as LLVM_READONLY.Daniel Dunbar
2011-11-09Fixing 80 col violations (& removing any trailing whitespace on files I was t...David Blaikie
2011-10-25Implement support for dependent Microsoft __if_exists/__if_not_existsDouglas Gregor
2011-04-14Add support for C++0x's range-based for loops, as specified by the C++11 draf...Richard Smith
2011-02-09Remove vtables from the Stmt hierarchy; this was pretty easy asJohn McCall
2010-08-18Rename PCHStmtReader -> ASTStmtReader.Sebastian Redl
2010-07-25Remove the vast majority of the Destroy methods from the AST library,Douglas Gregor
2010-07-22Support C++ try/catch statements for PCH.Argyrios Kyrtzidis
2010-03-31Remove the AST statistics tracking I added yesterday; it didn't pan out.Douglas Gregor
2010-03-30Introduce new AST statistics that keep track of the number of isa (orDouglas Gregor
2010-02-03Implement Doug's suggestion. Eliminate the Stmts pointer from CXXTryStmt and ...Sam Weinig
2010-02-03Remove the SmallVector from CXXTryStmt.Sam Weinig
2009-12-04Add an easy accessor for the end of the try/catch statement.Mike Stump
2009-11-30Add const to accessors that don't modify the object.Mike Stump
2009-11-20Checkpoint current work. WIP.Mike Stump
2009-08-07Separate Stmt::Destroy into the entrypoint for destroying a statementDouglas Gregor
2009-05-18Template instantiation for C++ try/catch statements.Douglas Gregor
2009-04-26Split C++ statements out to their own file.Chris Lattner