Age | Commit message (Expand) | Author |
2012-12-29 | ArrayRefize a CompoundStmt constructor. | Nico Weber |
2012-12-19 | PR13470: Ensure that copy-list-initialization isntantiates as | Richard Smith |
2012-12-19 | Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as pe... | David Blaikie |
2012-12-11 | PR14558: Compute triviality of special members (etc) at the end of the class | Richard Smith |
2012-12-09 | Virtual method overrides can no longer have mismatched calling conventions. ... | Aaron Ballman |
2012-12-09 | PR14550: If a system header contains a bogus constexpr function definition, | Richard Smith |
2012-12-08 | Finish implementing 'selected constructor' rules for triviality in C++11. In | Richard Smith |
2012-12-08 | Remove some remnants of the assumption that there is at most one of each | Richard Smith |
2012-12-08 | Properly compute triviality for explicitly-defaulted or deleted special members. | Richard Smith |
2012-12-07 | Per [dcl.fct.def.default]p1, don't allow variadic special members to be defau... | Richard Smith |
2012-12-04 | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth |
2012-12-01 | Consistently use 'needsImplicit<special member>' to determine whether we need | Richard Smith |
2012-11-29 | The declaration of a special member can require overload resolution to be | Richard Smith |
2012-11-28 | Store on the CXXRecordDecl whether the class has, or would have, a copy | Richard Smith |
2012-11-28 | C++ core issue 1344, PR10618: promote "addition of default argument makes this | Richard Smith |
2012-11-27 | Simplify checking for whether we should implicitly declare special members and | Richard Smith |
2012-11-16 | A step towards sorting out handling of triviality of special members in C++11. | Richard Smith |
2012-11-15 | Teach the uninitialized field warning about anonymous structs and union members. | Nick Lewycky |
2012-11-14 | Remove another questionable use of hasTrivial*. The relevant thing for this | Richard Smith |
2012-11-13 | Fix some wrong-code bugs in implicitly-defined assignment operators: | Richard Smith |
2012-11-12 | Factor duplicated implicit memcpy call generation code out of copy/move | Richard Smith |
2012-11-10 | Rework my implementation of circular-reference finding to not use | Douglas Gregor |
2012-11-10 | Diagnostic circular inheritance involving dependent base classes. We | Douglas Gregor |
2012-11-04 | Put the usage-directive inside the nearest namespace or TU decl. We don't want | Nick Lewycky |
2012-10-20 | Rework implementation of DR1492: Apply the resolution to operator delete too, | Richard Smith |
2012-10-19 | Handle diamond inheritance in -Woverloaded-virtual. | David Blaikie |
2012-10-18 | Fix Objective-C implicit property synthesis for C++ classes so we use valid | Eli Friedman |
2012-10-17 | Fix -Woverloaded-virtual when the using statement refers to a base declaratio... | David Blaikie |
2012-10-12 | Fix typo correction of one qualified name to another. | David Blaikie |
2012-10-10 | Fix stack overflow when trying to create an implicit moving | Argyrios Kyrtzidis |
2012-10-05 | Workaround for libstdc++4.6 <atomic> bug: make comment more explicit about wh... | Richard Smith |
2012-10-04 | Egriegious hack to support libstdc++4.6's broken <atomic> header, which defines | Richard Smith |
2012-10-02 | Add FP_CONTRACT support for clang. | Lang Hames |
2012-09-25 | Fix for r163013 regression and further __interface enhancement. | John McCall |
2012-09-25 | Don't produce diagnostics for missing ctor-initializers during template | Richard Smith |
2012-09-21 | Make warnings about uninitialized fields include the field name. | Hans Wennborg |
2012-09-21 | Doxygen-ify a comment. | Craig Topper |
2012-09-21 | PR13890: Warn on abstract final classes. | David Blaikie |
2012-09-20 | Per C++11 [class.friend]p3, the 'friend' keyword must appear first in a | Richard Smith |
2012-09-18 | Warn about self references in in-class initializers. | Hans Wennborg |
2012-09-17 | Don't write uninitialized values even if nobody ever asks for it. | Axel Naumann |
2012-09-14 | When diagnosing multiple mem-initializers in a delegating ctor, point to the ... | Richard Smith |
2012-09-14 | As we do with base and member initializers in a dependent class, delay | Douglas Gregor |
2012-09-10 | Remove redundant semicolons which are null statements. | Dmitri Gribenko |
2012-09-06 | Don't try to check override control for invalid member functions. Fixes a cra... | Richard Smith |
2012-09-01 | Changed the remaining dead asserts to llvm_unreachable. | Joao Matos |
2012-08-31 | Normalize line endings of r163013 (part 2). | Joao Matos |
2012-08-31 | Improved MSVC __interface support by adding first class support for it, inste... | Joao Matos |
2012-08-31 | Change the representation of builtin functions in the AST | Eli Friedman |
2012-08-24 | Push ArrayRef through the Expr hierarchy. | Benjamin Kramer |