| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Parse brace initializers as default arguments. PR12236. | Sebastian Redl | 2012-03-14 | 1 | -1/+5 |
* | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -4/+4 |
* | Streamline BalancedDelimiterTracker, by eliminating the duplicate | Douglas Gregor | 2012-03-08 | 1 | -1/+1 |
* | Improve diagnostics a bit for bad member initializers, and fix an obscure bug... | Eli Friedman | 2012-02-22 | 1 | -23/+40 |
* | Implement name mangling for lambda expressions that occur within the | Douglas Gregor | 2012-02-21 | 1 | -1/+2 |
* | Implement name mangling for lambda expressions that occur within the | Douglas Gregor | 2012-02-21 | 1 | -2/+4 |
* | Change the diagnostics which said 'accepted as an extension' to instead say | Richard Smith | 2011-12-29 | 1 | -2/+2 |
* | Remove unused parameter from the LateParsedTemplatedFunction constructor. | Francois Pichet | 2011-12-08 | 1 | -2/+1 |
* | Enable delayed template parsing for friend functions declared at template cla... | Francois Pichet | 2011-11-18 | 1 | -2/+1 |
* | PR11148: Fix crash-on-invalid if an invalid member declaration is marked as | Richard Smith | 2011-11-10 | 1 | -0/+5 |
* | When we notice that a member function is defined with "= delete" or "= | Douglas Gregor | 2011-11-07 | 1 | -3/+5 |
* | When we end up having to parse the initializer of a C++ member early | Douglas Gregor | 2011-10-17 | 1 | -2/+2 |
* | Implement -Wc++98-compat warnings for the parser. | Richard Smith | 2011-10-15 | 1 | -4/+6 |
* | Allow for annotate attributes after access specifiers. When such | Erik Verbruggen | 2011-10-13 | 1 | -1/+5 |
* | Move some bool flags out of function parameter lists. | Kaelyn Uhrain | 2011-10-11 | 1 | -3/+3 |
* | Parse the initializer for a class member after handling its | Douglas Gregor | 2011-10-10 | 1 | -4/+11 |
* | Fix a bug in the token caching for inline constructors in C++11, and improve ... | Sebastian Redl | 2011-09-30 | 1 | -28/+41 |
* | PR11000: Fix crash on invalid. | Richard Smith | 2011-09-29 | 1 | -1/+1 |
* | Correctly parse braced member initializers (even in delayed parsing) and corr... | Sebastian Redl | 2011-09-24 | 1 | -2/+50 |
* | Fix a crash-on-invalid. | Matt Beaumont-Gay | 2011-09-23 | 1 | -0/+2 |
* | Support code-completion for C++ inline methods and ObjC buffering methods. | Argyrios Kyrtzidis | 2011-09-04 | 1 | -0/+5 |
* | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor | 2011-07-27 | 1 | -0/+3 |
* | Implement support for C++11 in-class initialization of non-static data members. | Richard Smith | 2011-06-11 | 1 | -0/+113 |
* | Properly parse the 'default' and 'delete' keywords. | Alexis Hunt | 2011-05-12 | 1 | -2/+37 |
* | In Microsoft mode, allow pure specifier (=0) on inline functions declared at ... | Francois Pichet | 2011-05-11 | 1 | -2/+3 |
* | Remove some more hard CR-LF lines. These were particularly weird as they were | Chandler Carruth | 2011-04-25 | 1 | -1/+1 |
* | Correctly emit a diagnostic for multiple templated function definitions in -f... | Francois Pichet | 2011-04-22 | 1 | -0/+1 |
* | Add -fdelayed-template-parsing option. Using this option all templated functi... | Francois Pichet | 2011-04-22 | 1 | -0/+31 |
* | If the declaration of a C++ member function with an inline definition | Douglas Gregor | 2011-04-14 | 1 | -0/+8 |
* | Remove warnings about using override control keywords in inline function defi... | Anders Carlsson | 2011-03-25 | 1 | -5/+0 |
* | Remove 'new' from virt-specifier since it's going to be removed in the next C... | Anders Carlsson | 2011-03-25 | 1 | -2/+0 |
* | Make sure that we always pop a function's scope *before* we call | Douglas Gregor | 2011-03-16 | 1 | -2/+3 |
* | When parsing an out-of-line member function declaration, we must delay | John McCall | 2011-02-14 | 1 | -1/+3 |
* | PR9037: Allow override, final, and new as an extension on inline members. | Nico Weber | 2011-01-28 | 1 | -4/+12 |
* | Pass the VirtSpecifiers along to Sema::ActOnCXXMemberDeclarator. | Anders Carlsson | 2011-01-20 | 1 | -1/+2 |
* | Added ParenType type node. | Abramo Bagnara | 2010-12-10 | 1 | -2/+1 |
* | Parse default arguments within member functions in source order, from | Douglas Gregor | 2010-10-12 | 1 | -134/+160 |
* | When parsing default function arguments, do not mark any declarations | Douglas Gregor | 2010-09-11 | 1 | -0/+5 |
* | One who seeks knowledge learns something new every day. | John McCall | 2010-08-26 | 1 | -1/+1 |
* | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 2010-08-24 | 1 | -1/+1 |
* | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 2010-08-23 | 1 | -2/+2 |
* | DeclPtrTy -> Decl * | John McCall | 2010-08-21 | 1 | -3/+2 |
* | Another step in the process of making the parser depend on Sema: | John McCall | 2010-08-20 | 1 | -2/+2 |
* | Change warning about incomplete parsing of C++ default arg to error and provi... | Argyrios Kyrtzidis | 2010-08-09 | 1 | -6/+2 |
* | Replace a parser assertion with a warning, suggestion by Doug. | Argyrios Kyrtzidis | 2010-08-09 | 1 | -3/+8 |
* | Introduce a new token kind 'cxx_defaultarg_end' to mark the end of C++ defaul... | Argyrios Kyrtzidis | 2010-08-06 | 1 | -1/+5 |
* | Move the "current scope" state from the Parser into Action. This | Douglas Gregor | 2010-07-02 | 1 | -13/+13 |
* | Cure for Doug's insomnia. | Argyrios Kyrtzidis | 2010-06-19 | 1 | -3/+3 |
* | Make sure the caching mechanism in Parser::ParseLexedMethodDefs is robust aga... | Argyrios Kyrtzidis | 2010-06-17 | 1 | -4/+16 |
* | Per conversation with Doug, remove two assertions in ParseLexedMethodDefs() that | Ted Kremenek | 2010-06-17 | 1 | -5/+3 |