Age | Commit message (Expand) | Author |
2010-04-08 | Make CXXScopeSpec invalid when incomplete, and propagate that into any | Jeffrey Yasskin |
2010-03-31 | Reinstate my CodeModificationHint -> FixItHint renaming patch, without | Douglas Gregor |
2010-03-31 | Revert r100008, which inexplicably breaks the clang-i686-darwin10 builder | Douglas Gregor |
2010-03-31 | Rename CodeModificationHint to FixItHint, since we've been using the | Douglas Gregor |
2010-03-29 | Support __attribute__((packed)) (along with other attributes) at the | Douglas Gregor |
2010-03-17 | Clean up after ourselves when there's an error parsing the base clause. | John McCall |
2010-03-16 | Audit all Preprocessor::getSpelling() callers, improving failure | Douglas Gregor |
2010-03-13 | Use SmallString instead of SmallVector | Kovarththanan Rajaratnam |
2010-03-02 | Fix an amusing typo that completely the re-introduction of parameters | Douglas Gregor |
2010-03-02 | Add comment | Douglas Gregor |
2010-03-01 | When we're parsing template names as part of base-specifiers, we are | Douglas Gregor |
2010-02-28 | Implement PR6423 by using one token of lookahead to disambiguate | Chris Lattner |
2010-02-27 | Add an overload of Preprocessor::getSpelling which takes a SmallVector and | Benjamin Kramer |
2010-02-26 | Fix an assertion-on-error during tentative constructor parsing by | John McCall |
2010-02-16 | Improve parsing and instantiation of destructor names, so that we can | Douglas Gregor |
2010-02-11 | Clean up ownership of 'AttributeList' objects in Parser. Apparently | Ted Kremenek |
2010-02-07 | Fix assertion failure when parsing linkage specifications (PR5921), | Douglas Gregor |
2010-02-07 | Add attributes to namespace decls. | Anders Carlsson |
2010-02-03 | In some contexts, type declarations cannot occur. Pass this information down ... | Sebastian Redl |
2010-02-03 | Declarators can have grouping parens. This fixes rdar://7608537. | Chris Lattner |
2010-02-03 | fix PR6216 | Chris Lattner |
2010-02-02 | the declspec of a declaration can have storage-class specifiers, | Chris Lattner |
2010-02-02 | Implement PR6180, substantially improving the diagnostics we get from | Chris Lattner |
2010-02-02 | improve diagnostics for C++ struct ; issues. Before: | Chris Lattner |
2010-01-31 | Rework base and member initialization in constructors, with several | Douglas Gregor |
2010-01-25 | Move the type specifier location for elaborated-type-specifiers from | Douglas Gregor |
2010-01-23 | Implement elementary access control. | John McCall |
2010-01-16 | While determining when to parse inline member functions of a class, | Douglas Gregor |
2010-01-12 | Improve recovery for template-ids whose template-name doesn't actually | Douglas Gregor |
2010-01-12 | Parse dependent template-ids in base clauses and member | Douglas Gregor |
2009-12-20 | Don't inject the class name until that magical lbrace. | John McCall |
2009-12-19 | Parse base specifiers within the scope of the class. This is possibly not | John McCall |
2009-12-12 | Remember the type name's scope specifier in the DeclSpec. | John McCall |
2009-12-11 | Implement access declarations. Most of the work here is parsing them, which | John McCall |
2009-12-10 | fix incorrect parsing of bitfields pointed out by Doug. I chose | Chris Lattner |
2009-12-10 | refactor the 'ColonIsSacred' argument to ParseOptionalCXXScopeSpecifier | Chris Lattner |
2009-12-10 | rename ExtensionRAIIObject.h -> RAIIObjectsForParser.h | Chris Lattner |
2009-12-09 | Fixes a bogus error when declaring an extern "C" array. | Fariborz Jahanian |
2009-12-07 | remove some defaulted params for consistency. | Chris Lattner |
2009-12-07 | reapply my patch for PR4451, which improves diagnostics for :: vs : confusion. | Chris Lattner |
2009-12-06 | revert my previous patch, it is breaking something and I don't have time | Chris Lattner |
2009-12-06 | implement PR4451, improving error recovery for a mistaken : where a :: was | Chris Lattner |
2009-12-06 | remove some extraneous syntax: sourceloc implicitly converts to sourcerange. | Chris Lattner |
2009-11-25 | Fix attribute between function decl ')' and '{' or '=0' | John Thompson |
2009-11-25 | Parse C++ member check attributes - base_check, hiding, and override. | Sean Hunt |
2009-11-24 | Have the parser tell sema whether a member declaration is a function definiti... | Sebastian Redl |
2009-11-21 | Added rudimentary C++0x attribute support. | Sean Hunt |
2009-11-18 | Incremental progress on using declarations. Split UnresolvedUsingDecl into | John McCall |
2009-11-10 | Improve parsing of template arguments to lay the foundation for | Douglas Gregor |
2009-11-06 | add some fixit hints. | Chris Lattner |