Age | Commit message (Expand) | Author |
2012-06-10 | PR13064: Store whether an in-class initializer uses direct or copy | Richard Smith |
2012-05-22 | Recognize the MS inheritance attributes and turn them into attributes | John McCall |
2012-05-16 | Move the warnings for extra semi-colons under -Wextra-semi. Also, added | Richard Trieu |
2012-05-09 | Recover properly if a class member declaration starts with a scope specifier | Richard Smith |
2012-05-07 | Change how we suppress access control in explicit instantiations | John McCall |
2012-05-03 | Add -Wimplicit-fallthrough warning flag, which warns on fallthrough between | Richard Smith |
2012-05-02 | Revert most of r154844, which was disabled in r155975. Keep around the | Richard Smith |
2012-04-29 | PR12688: ParseCXXClassMemberDeclaration's sometimes-null ThisDecl takes another | Richard Smith |
2012-04-22 | Remove unnecessary StringRef->char*->StringRef conversion, which read uniniti... | Benjamin Kramer |
2012-04-21 | Fix regression in r154844. If necessary, defer computing adjusted destructor | Richard Smith |
2012-04-16 | Implement the last part of C++ [class.mem]p2, delaying the parsing of | Douglas Gregor |
2012-04-10 | Parsing of C++11 attributes: | Richard Smith |
2012-04-10 | Disambiguation of '[[': | Richard Smith |
2012-03-23 | Support for definitions of member enumerations of class templates outside the | Richard Smith |
2012-03-12 | Fix a crash-on-invalid found by -Wlogical-op-parentheses. | David Blaikie |
2012-03-12 | Fix parsing of trailing-return-type. Types are syntactically prohibited from | Richard Smith |
2012-03-12 | Fix parsing of type-specifier-seq's. Types are syntactically allowed to be | Richard Smith |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-06 | User-defined literals: reject string and character UDLs in all places where the | Richard Smith |
2012-03-05 | static_assert: Allow any string-literal as the message, not just a character | Richard Smith |
2012-03-02 | Make late-parsed attributes follow the conventions of ordinary | DeLesley Hutchins |
2012-02-27 | Fix decltype crash-on-invalid, if we don't find a matching ')' for an ill-formed | Richard Smith |
2012-02-24 | Back out __decltype warning from r151377: we should either warn on all the GNU | Richard Smith |
2012-02-24 | __decltype is a GNU extension, not a C++11 extension. | Richard Smith |
2012-02-23 | Handle "#pragma GCC visibility" in a few more places. Switch over "#pragma p... | Eli Friedman |
2012-02-22 | Fix parsing and processing initializer lists in return statements and as dire... | Sebastian Redl |
2012-02-22 | Implement C++11 [expr.call]p11: If the operand to a decltype-specifier is a | Richard Smith |
2012-02-21 | Implement name mangling for lambda expressions that occur within the | Douglas Gregor |
2012-02-14 | Fix crash-on-invalid for 'operator int[]()' in C++11. | David Blaikie |
2012-02-06 | Added location for template keyword in TemplateSpecializationTypeLoc. In the ... | Abramo Bagnara |
2012-02-05 | Basic: import SmallString<> into clang namespace | Dylan Noblesmith |
2012-02-04 | Move a method from IdentifierTable.h out of line and remove the SmallString i... | Benjamin Kramer |
2012-01-27 | Added source location for the template keyword in AST template-id expressions. | Abramo Bagnara |
2012-01-27 | Avoid redundant NNS qualification in constructor/destructor names. | Abramo Bagnara |
2012-01-24 | Support decltype in member initializers. | David Blaikie |
2012-01-21 | Fix code so that a SkipUntil will ignore semicolons when skipping a | Richard Trieu |
2012-01-12 | Improve 0-argument -Wvexing-parse diagnostic by adding notes with fix-its: | Richard Smith |
2012-01-10 | Update C++11 scoped enumeration support to match the final proposal: | Richard Smith |
2012-01-09 | Extend the diagnostic for a ',' at the end of a declaration where a ';' was | Richard Smith |
2011-12-23 | Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" ... | Benjamin Kramer |
2011-12-08 | Use the real end of the decltype expression. | David Blaikie |
2011-12-04 | Support decltype in nested-name-specifiers. | David Blaikie |
2011-11-07 | When we notice that a member function is defined with "= delete" or "= | Douglas Gregor |
2011-11-07 | Tighten up the conditions under which we consider ourselves to be | Douglas Gregor |
2011-10-25 | Handle redundant 'typename' on base class specifications. | David Blaikie |
2011-10-25 | Fix erroneous name-specifiers prior to decltypes better/correctly as per Doug... | David Blaikie |
2011-10-25 | Initialize the BaseLoc for decltype base type specifications. | David Blaikie |
2011-10-25 | Fix cases where the optional nested-name-specifier erroneously preceeded a de... | David Blaikie |
2011-10-25 | Support the use of decltype for specifying base types. Fixes PR11216. | David Blaikie |
2011-10-24 | Rework Microsoft __if_exists/__if_not_exists parsing and semantic | Douglas Gregor |