Age | Commit message (Expand) | Author |
2010-10-21 | Diagnose the declaration of template template parameters that | Douglas Gregor |
2010-10-15 | When we are missing the ',' or '>' to terminate a template parameter | Douglas Gregor |
2010-08-26 | One who seeks knowledge learns something new every day. | John McCall |
2010-08-24 | OwningExprResult -> ExprResult. This patch brought to you by | John McCall |
2010-08-24 | Abstract out passing around types and kill off ActionBase. | John McCall |
2010-08-23 | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall |
2010-08-23 | Push DeclGroupRefs and TemplateNames in an opaque but type-safe way | John McCall |
2010-08-23 | Kill off Parser::TemplateParameterList to avoid misparses. | John McCall |
2010-08-23 | Sundry incremental steps towards killing off Action. | John McCall |
2010-08-21 | DeclPtrTy -> Decl * | John McCall |
2010-08-20 | Another step in the process of making the parser depend on Sema: | John McCall |
2010-08-06 | Template keyword should not be ignored building a QualifiedTemplateName. | Abramo Bagnara |
2010-07-16 | Treat template parameters as part of the declaration-specifiers for the | John McCall |
2010-07-11 | Fix PR7617 by not entering ParseFunctionDefinition when | Chris Lattner |
2010-07-02 | Move the "current scope" state from the Parser into Action. This | Douglas Gregor |
2010-07-01 | Implement C++ DR481, which clarifies that the scope of template | Douglas Gregor |
2010-06-16 | When we see a 'template' disambiguator that marks the next identifier | Douglas Gregor |
2010-06-16 | Fix the recently-added warning about 'typename' and 'template' | Douglas Gregor |
2010-06-04 | Properly disambiguate between an elaborated-type-specifier and a | Douglas Gregor |
2010-05-21 | Improve recovery when we see a dependent template name that is missing | Douglas Gregor |
2010-05-21 | Improve parser recovery when we encounter a dependent template name | Douglas Gregor |
2010-05-21 | Propagate access specifiers to anonymous union members nested within classes. | John McCall |
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-02-08 | When placing an annotation token over an existing annotation token, make sure... | Sebastian Redl |
2010-01-13 | Reimplement constructor declarator parsing to cope with template-ids | Douglas Gregor |
2009-12-27 | Make sure to give an error for template argument lists followed by junk. | Eli Friedman |
2009-12-10 | Second half of r91023, saving files is good. | Chris Lattner |
2009-12-10 | spread 'const' love to some variables. this considerably reduces the amount o... | Nuno Lopes |
2009-11-28 | Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. | Benjamin Kramer |
2009-11-21 | Added rudimentary C++0x attribute support. | Sean Hunt |
2009-11-21 | Implement C++ [temp.param]p2 correctly, looking ahead when we see a | Douglas Gregor |
2009-11-20 | Cope with extraneous "template" keyword when providing an out-of-line | Douglas Gregor |
2009-11-12 | Remove an overly-eager assertion when replacing tokens with an | Douglas Gregor |
2009-11-11 | Introduce a new representation for template template | Douglas Gregor |
2009-11-10 | Silence warning. | Benjamin Kramer |
2009-11-10 | Improve parsing of template arguments to lay the foundation for | Douglas Gregor |
2009-11-04 | Properly replace (cxxscope, template-id) annotation tokens with a | Douglas Gregor |
2009-11-04 | Change our basic strategy for avoiding deprecation warnings when the decl use | John McCall |
2009-11-04 | Implement support for parsing dependent template-ids that refer to | Douglas Gregor |
2009-10-30 | Improved fix for PR3844, which recovers better for class template | Douglas Gregor |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-09-04 | Parse extern templates, pass that information all the way to Sema, | Douglas Gregor |
2009-08-24 | Keep track of the template parameter depth properly when we have | Douglas Gregor |
2009-08-20 | Initial support for parsing and representation of member function templates. | Douglas Gregor |
2009-08-20 | Fix a typo in a variable name | Douglas Gregor |
2009-07-31 | sp. | John McCall |
2009-07-22 | Implement support for out-of-line definitions of the class members of class | Douglas Gregor |
2009-06-26 | fix PR4452, a crash on invalid. The error recovery is still terrible in this... | Chris Lattner |