| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl... | Benjamin Kramer | 2012-08-23 | 1 | -6/+5 |
| * | Remove ASTOwningVector, it doesn't own anything and provides no value over Sm... | Benjamin Kramer | 2012-08-23 | 1 | -2/+2 |
| * | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer | 2012-08-23 | 1 | -2/+2 |
| * | Add diagnostics for comma at end of enum and for extra semicolon at namespace | Richard Smith | 2012-07-23 | 1 | -5/+3 |
| * | A ':' after an enum-specifier at class scope is a bitfield, not a typo for a ... | Richard Smith | 2012-07-02 | 1 | -3/+5 |
| * | Extend the "expected ';' after struct" logic to also apply to enums, and to | Richard Smith | 2012-06-25 | 1 | -73/+83 |
| * | Clean up a large number of C++11 attribute parse issues, including parsing | Alexis Hunt | 2012-06-23 | 1 | -4/+27 |
| * | Perform typo correction for base class specifiers. | Kaelyn Uhrain | 2012-06-22 | 1 | -1/+3 |
| * | Reapply r158700 and fixup patches, minus one hunk that slipped through and | Alexis Hunt | 2012-06-19 | 1 | -3/+3 |
| * | Revert r158700 and dependent patches r158716, r158717, and r158731. | Jakob Stoklund Olesen | 2012-06-19 | 1 | -3/+3 |
| * | Improve the specification of spellings in Attr.td. | Alexis Hunt | 2012-06-19 | 1 | -3/+3 |
| * | Handle C++11 attribute namespaces automatically. | Alexis Hunt | 2012-06-18 | 1 | -4/+5 |
| * | PR13064: Store whether an in-class initializer uses direct or copy | Richard Smith | 2012-06-10 | 1 | -10/+11 |
| * | Recognize the MS inheritance attributes and turn them into attributes | John McCall | 2012-05-22 | 1 | -0/+17 |
| * | Move the warnings for extra semi-colons under -Wextra-semi. Also, added | Richard Trieu | 2012-05-16 | 1 | -11/+6 |
| * | Recover properly if a class member declaration starts with a scope specifier | Richard Smith | 2012-05-09 | 1 | -5/+11 |
| * | Change how we suppress access control in explicit instantiations | John McCall | 2012-05-07 | 1 | -7/+15 |
| * | Add -Wimplicit-fallthrough warning flag, which warns on fallthrough between | Richard Smith | 2012-05-03 | 1 | -19/+21 |
| * | Revert most of r154844, which was disabled in r155975. Keep around the | Richard Smith | 2012-05-02 | 1 | -76/+8 |
| * | PR12688: ParseCXXClassMemberDeclaration's sometimes-null ThisDecl takes another | Richard Smith | 2012-04-29 | 1 | -1/+1 |
| * | Remove unnecessary StringRef->char*->StringRef conversion, which read uniniti... | Benjamin Kramer | 2012-04-22 | 1 | -1/+1 |
| * | Fix regression in r154844. If necessary, defer computing adjusted destructor | Richard Smith | 2012-04-21 | 1 | -0/+4 |
| * | Implement the last part of C++ [class.mem]p2, delaying the parsing of | Douglas Gregor | 2012-04-16 | 1 | -16/+87 |
| * | Parsing of C++11 attributes: | Richard Smith | 2012-04-10 | 1 | -26/+68 |
| * | Disambiguation of '[[': | Richard Smith | 2012-04-10 | 1 | -16/+23 |
| * | Support for definitions of member enumerations of class templates outside the | Richard Smith | 2012-03-23 | 1 | -11/+4 |
| * | Fix a crash-on-invalid found by -Wlogical-op-parentheses. | David Blaikie | 2012-03-12 | 1 | -1/+1 |
| * | Fix parsing of trailing-return-type. Types are syntactically prohibited from | Richard Smith | 2012-03-12 | 1 | -17/+17 |
| * | Fix parsing of type-specifier-seq's. Types are syntactically allowed to be | Richard Smith | 2012-03-12 | 1 | -14/+12 |
| * | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -22/+22 |
| * | User-defined literals: reject string and character UDLs in all places where the | Richard Smith | 2012-03-06 | 1 | -1/+8 |
| * | static_assert: Allow any string-literal as the message, not just a character | Richard Smith | 2012-03-05 | 1 | -1/+1 |
| * | Make late-parsed attributes follow the conventions of ordinary | DeLesley Hutchins | 2012-03-02 | 1 | -3/+13 |
| * | Fix decltype crash-on-invalid, if we don't find a matching ')' for an ill-formed | Richard Smith | 2012-02-27 | 1 | -2/+2 |
| * | Back out __decltype warning from r151377: we should either warn on all the GNU | Richard Smith | 2012-02-24 | 1 | -2/+2 |
| * | __decltype is a GNU extension, not a C++11 extension. | Richard Smith | 2012-02-24 | 1 | -0/+3 |
| * | Handle "#pragma GCC visibility" in a few more places. Switch over "#pragma p... | Eli Friedman | 2012-02-23 | 1 | -0/+10 |
| * | Fix parsing and processing initializer lists in return statements and as dire... | Sebastian Redl | 2012-02-22 | 1 | -9/+8 |
| * | Implement C++11 [expr.call]p11: If the operand to a decltype-specifier is a | Richard Smith | 2012-02-22 | 1 | -2/+8 |
| * | Implement name mangling for lambda expressions that occur within the | Douglas Gregor | 2012-02-21 | 1 | -2/+5 |
| * | Fix crash-on-invalid for 'operator int[]()' in C++11. | David Blaikie | 2012-02-14 | 1 | -3/+4 |
| * | Added location for template keyword in TemplateSpecializationTypeLoc. In the ... | Abramo Bagnara | 2012-02-06 | 1 | -3/+3 |
| * | Basic: import SmallString<> into clang namespace | Dylan Noblesmith | 2012-02-05 | 1 | -1/+1 |
| * | Move a method from IdentifierTable.h out of line and remove the SmallString i... | Benjamin Kramer | 2012-02-04 | 1 | -0/+1 |
| * | Added source location for the template keyword in AST template-id expressions. | Abramo Bagnara | 2012-01-27 | 1 | -3/+7 |
| * | Avoid redundant NNS qualification in constructor/destructor names. | Abramo Bagnara | 2012-01-27 | 1 | -0/+1 |
| * | Support decltype in member initializers. | David Blaikie | 2012-01-24 | 1 | -8/+21 |
| * | Fix code so that a SkipUntil will ignore semicolons when skipping a | Richard Trieu | 2012-01-21 | 1 | -4/+5 |
| * | Improve 0-argument -Wvexing-parse diagnostic by adding notes with fix-its: | Richard Smith | 2012-01-12 | 1 | -0/+1 |
| * | Update C++11 scoped enumeration support to match the final proposal: | Richard Smith | 2012-01-10 | 1 | -3/+4 |