| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a | Douglas Gregor | 2010-10-08 | 1 | -1/+2 |
* | Implement the C++0x "trailing return type" feature, e.g., | Douglas Gregor | 2010-10-01 | 1 | -0/+19 |
* | Allow the use of C++0x deleted functions as an extension in C++98. | Anders Carlsson | 2010-09-24 | 1 | -1/+3 |
* | Eliminate the comma locations from all of the Sema routines that deal | Douglas Gregor | 2010-09-09 | 1 | -2/+1 |
* | Improve recovery when there is a stray ']' or ')' before the ';' at | Douglas Gregor | 2010-09-07 | 1 | -3/+4 |
* | Improve recovery when a comma is missing between enumerators in an | Douglas Gregor | 2010-09-07 | 1 | -5/+5 |
* | Improve diagnostic and recovery when missing a comma between base or | Douglas Gregor | 2010-09-07 | 1 | -0/+6 |
* | Enable inline namespaces in C++03 as an extension. | Sebastian Redl | 2010-08-31 | 1 | -0/+4 |
* | Basic code completion support for the base and member initializers in | Douglas Gregor | 2010-08-28 | 1 | -6/+13 |
* | Parser support for inline namespaces | Sebastian Redl | 2010-08-27 | 1 | -7/+14 |
* | One who seeks knowledge learns something new every day. | John McCall | 2010-08-26 | 1 | -27/+25 |
* | Parse all kinds of declarations as part of a linkage-specification, | Douglas Gregor | 2010-08-24 | 1 | -1/+1 |
* | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 2010-08-24 | 1 | -8/+8 |
* | Abstract out passing around types and kill off ActionBase. | John McCall | 2010-08-24 | 1 | -33/+31 |
* | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 2010-08-23 | 1 | -2/+3 |
* | Push DeclGroupRefs and TemplateNames in an opaque but type-safe way | John McCall | 2010-08-23 | 1 | -3/+3 |
* | Sundry incremental steps towards killing off Action. | John McCall | 2010-08-23 | 1 | -4/+4 |
* | DeclPtrTy -> Decl * | John McCall | 2010-08-21 | 1 | -35/+35 |
* | Another step in the process of making the parser depend on Sema: | John McCall | 2010-08-20 | 1 | -3/+3 |
* | -Make TokenID of IdentifierInfo read-only, remove setTokenID(). | Argyrios Kyrtzidis | 2010-08-11 | 1 | -2/+2 |
* | Allow multiple __declspec attributes after a class-key. | John McCall | 2010-08-05 | 1 | -1/+1 |
* | Fixed typedef inside extern "C". | Abramo Bagnara | 2010-07-30 | 1 | -0/+1 |
* | Improve error recovery when presented with an ill-formed template-id | John McCall | 2010-07-30 | 1 | -5/+9 |
* | Add source location information to C++ base specifiers. | Nick Lewycky | 2010-07-26 | 1 | -3/+14 |
* | Treat template parameters as part of the declaration-specifiers for the | John McCall | 2010-07-16 | 1 | -4/+7 |
* | Move the "current scope" state from the Parser into Action. This | Douglas Gregor | 2010-07-02 | 1 | -37/+37 |
* | Partial fix for PR7267 based on comments by John McCall on an earlier patch. | Chandler Carruth | 2010-06-28 | 1 | -0/+22 |
* | When semantic analysis fail to introduce a class or class template, | Douglas Gregor | 2010-06-21 | 1 | -30/+35 |
* | When parsing cached C++ method declarations/definitions, save the | Douglas Gregor | 2010-06-16 | 1 | -0/+2 |
* | Make the "extra ';' inside a struct or union" diagnostic more | Douglas Gregor | 2010-06-16 | 1 | -0/+1 |
* | Allow an asm label specifier on C++ methods, like GCC does. | Chris Lattner | 2010-06-13 | 1 | -2/+11 |
* | Added AccessSpecDecl node. | Abramo Bagnara | 2010-06-05 | 1 | -1/+6 |
* | Don't try to parse class template specializations in C. It can only | Douglas Gregor | 2010-05-30 | 1 | -3/+1 |
* | Don't just skip over the entire tag definition if the parser action didn't | John McCall | 2010-05-28 | 1 | -10/+8 |
* | Improve code completion in failure cases in two ways: | Douglas Gregor | 2010-05-25 | 1 | -5/+5 |
* | Propagate access specifiers to anonymous union members nested within classes. | John McCall | 2010-05-21 | 1 | -1/+1 |
* | mutable is a storage class that can follow a class/struct/union definition. F... | Douglas Gregor | 2010-05-17 | 1 | -0/+1 |
* | Namespaces can only be defined at global or namespace scope. Fixes PR6596. | Douglas Gregor | 2010-05-14 | 1 | -0/+8 |
* | Replace a char*/size pair with stringref. | Benjamin Kramer | 2010-05-03 | 1 | -1/+1 |
* | Parse friend template ids as types instead of ending up in | John McCall | 2010-04-14 | 1 | -4/+8 |
* | Make CXXScopeSpec invalid when incomplete, and propagate that into any | Jeffrey Yasskin | 2010-04-08 | 1 | -1/+1 |
* | Reinstate my CodeModificationHint -> FixItHint renaming patch, without | Douglas Gregor | 2010-03-31 | 1 | -3/+3 |
* | Revert r100008, which inexplicably breaks the clang-i686-darwin10 builder | Douglas Gregor | 2010-03-31 | 1 | -3/+3 |
* | Rename CodeModificationHint to FixItHint, since we've been using the | Douglas Gregor | 2010-03-31 | 1 | -3/+3 |
* | Support __attribute__((packed)) (along with other attributes) at the | Douglas Gregor | 2010-03-29 | 1 | -2/+3 |
* | Clean up after ourselves when there's an error parsing the base clause. | John McCall | 2010-03-17 | 1 | -2/+5 |
* | Audit all Preprocessor::getSpelling() callers, improving failure | Douglas Gregor | 2010-03-16 | 1 | -1/+4 |
* | Use SmallString instead of SmallVector | Kovarththanan Rajaratnam | 2010-03-13 | 1 | -47/+47 |
* | Fix an amusing typo that completely the re-introduction of parameters | Douglas Gregor | 2010-03-02 | 1 | -1/+1 |
* | Add comment | Douglas Gregor | 2010-03-02 | 1 | -1/+2 |