Age | Commit message (Expand) | Author |
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 |
2012-08-23 | Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl... | Benjamin Kramer |
2012-08-23 | Remove ASTOwningVector, it doesn't own anything and provides no value over Sm... | Benjamin Kramer |
2012-08-23 | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer |
2012-08-23 | Fix undefined behavior: member function calls where 'this' is a null pointer. | Richard Smith |
2012-08-20 | Better wording for reference self-initialization warning. | Hans Wennborg |
2012-08-16 | Store SourceManager pointer on PrintingPolicy in the case where we're dumping, | Richard Smith |
2012-08-14 | Make __is_convertible_to handle abstract types correctly. PR13591. | Eli Friedman |
2012-08-10 | Check access to friend declarations. There's a number of different | John McCall |
2012-08-07 | -Wunused-private-fields: Don't try to check unresolved initializer expressions | Richard Smith |
2012-08-06 | PR13499: Don't try to check whether 'override' has been validly applied until | Richard Smith |
2012-08-06 | PR13527: don't assert if a function is explicitly defaulted when it's already | Richard Smith |
2012-08-03 | Fix crash if a literal operator template's template parameter pack is not a n... | Richard Smith |
2012-08-02 | Attaching comments to declarations: handle using-declaration. | Dmitri Gribenko |
2012-07-30 | PR13479: If we see the definition of an out-of-line destructor in C++11, be | Richard Smith |
2012-07-27 | Final piece of core issue 1330: delay computing the exception specification of | Richard Smith |
2012-07-23 | Fix a typo (the the => the) | Sylvestre Ledru |
2012-07-23 | When we have an Objective-C object with non-trivial lifetime in a | Douglas Gregor |
2012-07-18 | PR13381, part 2: when determining if a defaulted special member function should | Richard Smith |
2012-07-18 | PR13381: consider cv-qualifiers on a class member's type when determining which | Richard Smith |
2012-07-12 | Ignore visibility attributes after definitions. This matches newer (4.7) gcc's | Rafael Espindola |
2012-07-11 | Stop instantiating a class if we hit a static_assert failure. Also, if the | Richard Smith |
2012-07-11 | Enable comment parsing and semantic analysis to emit diagnostics. A few | Dmitri Gribenko |
2012-07-07 | When marking virtual functions as used for a class' vtable, mark all functions | Richard Smith |
2012-07-04 | Split out the "empty" case for compound statement into a separate ctor. | Benjamin Kramer |
2012-07-02 | Be more eager about setting the 'Invalid' bit on an invalid class | Douglas Gregor |
2012-06-29 | Avoid redundant error when redefining a function as deleted. | David Blaikie |
2012-06-25 | PR12937: Explicitly deleting an explicit template specialization. | David Blaikie |
2012-06-25 | Unrevert r158887, reverted in r158949, along with a fix for the bug which | Richard Smith |
2012-06-21 | Revert r158887. This fixes pr13168. | Rafael Espindola |
2012-06-21 | If an object (such as a std::string) with an appropriate c_str() member function | Richard Smith |
2012-06-20 | Restructure how the driver communicates information about the | John McCall |
2012-06-15 | Documentation cleanup: | James Dennett |
2012-06-14 | Fix T* p to T *p | Richard Trieu |