Age | Commit message (Expand) | Author |
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 |
2012-06-14 | Use a proper visitor to recursively check for uninitialized use in constructors. | Richard Trieu |
2012-06-13 | Allow __attribute__((unused)) for fields and make it silence | Daniel Jasper |
2012-06-10 | Remove CXXRecordDecl flags which are unused after r158289. | Richard Smith |
2012-06-10 | Fix PR13052 properly, by performing special member lookup to determine whether | Richard Smith |
2012-06-10 | PR13064: Store whether an in-class initializer uses direct or copy | Richard Smith |
2012-06-06 | Revert Decl's iterators back to pointer value_type rather than reference valu... | David Blaikie |
2012-06-06 | Introduce -Wunused-private-field. If enabled, this warning detects | Daniel Jasper |
2012-05-19 | Make delegating initializers use a similar codepath to base initializers in d... | Eli Friedman |
2012-05-19 | Apparently empty names are allowed here. | Benjamin Kramer |
2012-05-19 | Simplify some users of DeclarationName::getNameKind. Fold getFETokenInfoAsVoi... | Benjamin Kramer |
2012-05-15 | Fold the six functions checking explicitly-defaulted special member functions | Richard Smith |
2012-05-04 | Move Sema::VerifyIntegerConstantExpression() and | Douglas Gregor |
2012-05-04 | Move Sema::RequireNonAbstractType() off of PartialDiagnostic. | Douglas Gregor |
2012-05-04 | Switch RequireLiteralType() off of PartialDiagnostic. | Douglas Gregor |
2012-05-04 | Move Sema::RequireCompleteType() and Sema::RequireCompleteExprType() | Douglas Gregor |
2012-05-02 | Revert most of r154844, which was disabled in r155975. Keep around the | Richard Smith |
2012-04-30 | Remove the ref/value inconsistency in filter_decl_iterator. | David Blaikie |
2012-04-29 | [class.copy]p23: Fix an assertion caused by incorrect argument numbering in a | Richard Smith |
2012-04-27 | PR12224 (sort of): Diagnose inheriting constructor declarations in C++11 mode. | Richard Smith |
2012-04-25 | PR12625: Cope with classes which have incomplete base or member types: | Richard Smith |
2012-04-24 | PR12629: Cope with parenthesized function types when attaching a delayed | Richard Smith |
2012-04-21 | Fix regression in r154844. If necessary, defer computing adjusted destructor | Richard Smith |
2012-04-21 | SemaDeclCXX.cpp: Fix utf8 in comment. | NAKAMURA Takumi |
2012-04-20 | Fix bug where a class's (deleted) copy constructor would be implicitly given a | Richard Smith |
2012-04-17 | Implement DR1330 in C++11 mode, to support libstdc++4.7 which uses it. | 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-04-09 | My original patch missed the virtual-base case for destroying | John McCall |
2012-04-09 | Fix the access check performed as part of the determination of whether | John McCall |
2012-04-07 | Fix several problems with protected access control: | John McCall |
2012-04-05 | Point the caret at the error for the 'expected namespace name' diagnostic in | Richard Smith |
2012-04-04 | Remove dead assignment to local variable. | Ted Kremenek |