Age | Commit message (Expand) | Author |
2013-03-27 | [Parser] Don't code-complete twice. | Argyrios Kyrtzidis |
2013-03-14 | Flag that friend function definitions are "late parsed" so that | John McCall |
2013-01-28 | Finish semantic analysis for [[carries_dependency]] attribute. | Richard Smith |
2013-01-08 | Tighten types a bit. No functionality change. | Rafael Espindola |
2013-01-02 | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith |
2012-12-04 | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth |
2012-08-23 | Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl... | Benjamin Kramer |
2012-08-23 | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer |
2012-06-28 | Support the use of "=delete" and "=default" with delayed template | Douglas Gregor |
2012-06-10 | PR13064: Store whether an in-class initializer uses direct or copy | Richard Smith |
2012-05-17 | CXXThisScopeRAII objects aren't free, don't compute one if it's unused. | Benjamin Kramer |
2012-05-07 | Refactor DelayedDiagnostics so that it keeps diagnostics in | John McCall |
2012-05-02 | Revert most of r154844, which was disabled in r155975. Keep around the | Richard Smith |
2012-04-16 | Implement the last part of C++ [class.mem]p2, delaying the parsing of | Douglas Gregor |
2012-04-16 | Implement C++11 [expr.prim.general]p3, which permits the use of 'this' | Douglas Gregor |
2012-03-20 | Fix the other place where C++98 work for initializer lists was necessary. | Sebastian Redl |
2012-03-14 | Parse brace initializers as default arguments. PR12236. | Sebastian Redl |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-08 | Streamline BalancedDelimiterTracker, by eliminating the duplicate | Douglas Gregor |
2012-02-22 | Improve diagnostics a bit for bad member initializers, and fix an obscure bug... | Eli Friedman |
2012-02-21 | Implement name mangling for lambda expressions that occur within the | Douglas Gregor |
2012-02-21 | Implement name mangling for lambda expressions that occur within the | Douglas Gregor |
2011-12-29 | Change the diagnostics which said 'accepted as an extension' to instead say | Richard Smith |
2011-12-08 | Remove unused parameter from the LateParsedTemplatedFunction constructor. | Francois Pichet |
2011-11-18 | Enable delayed template parsing for friend functions declared at template cla... | Francois Pichet |
2011-11-10 | PR11148: Fix crash-on-invalid if an invalid member declaration is marked as | Richard Smith |
2011-11-07 | When we notice that a member function is defined with "= delete" or "= | Douglas Gregor |
2011-10-17 | When we end up having to parse the initializer of a C++ member early | Douglas Gregor |
2011-10-15 | Implement -Wc++98-compat warnings for the parser. | Richard Smith |
2011-10-13 | Allow for annotate attributes after access specifiers. When such | Erik Verbruggen |
2011-10-11 | Move some bool flags out of function parameter lists. | Kaelyn Uhrain |
2011-10-10 | Parse the initializer for a class member after handling its | Douglas Gregor |
2011-09-30 | Fix a bug in the token caching for inline constructors in C++11, and improve ... | Sebastian Redl |
2011-09-29 | PR11000: Fix crash on invalid. | Richard Smith |
2011-09-24 | Correctly parse braced member initializers (even in delayed parsing) and corr... | Sebastian Redl |
2011-09-23 | Fix a crash-on-invalid. | Matt Beaumont-Gay |
2011-09-04 | Support code-completion for C++ inline methods and ObjC buffering methods. | Argyrios Kyrtzidis |
2011-07-27 | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor |
2011-06-11 | Implement support for C++11 in-class initialization of non-static data members. | Richard Smith |
2011-05-12 | Properly parse the 'default' and 'delete' keywords. | Sean Hunt |
2011-05-11 | In Microsoft mode, allow pure specifier (=0) on inline functions declared at ... | Francois Pichet |
2011-04-25 | Remove some more hard CR-LF lines. These were particularly weird as they were | Chandler Carruth |
2011-04-22 | Correctly emit a diagnostic for multiple templated function definitions in -f... | Francois Pichet |
2011-04-22 | Add -fdelayed-template-parsing option. Using this option all templated functi... | Francois Pichet |
2011-04-14 | If the declaration of a C++ member function with an inline definition | Douglas Gregor |
2011-03-25 | Remove warnings about using override control keywords in inline function defi... | Anders Carlsson |
2011-03-25 | Remove 'new' from virt-specifier since it's going to be removed in the next C... | Anders Carlsson |
2011-03-16 | Make sure that we always pop a function's scope *before* we call | Douglas Gregor |
2011-02-14 | When parsing an out-of-line member function declaration, we must delay | John McCall |
2011-01-28 | PR9037: Allow override, final, and new as an extension on inline members. | Nico Weber |