| Commit message (Expand) | Author | Age | Files | Lines |
| * | PR13381, part 2: when determining if a defaulted special member function should | Richard Smith | 2012-07-18 | 1 | -9/+18 |
| * | PR13381: consider cv-qualifiers on a class member's type when determining which | Richard Smith | 2012-07-18 | 1 | -12/+19 |
| * | Ignore visibility attributes after definitions. This matches newer (4.7) gcc's | Rafael Espindola | 2012-07-12 | 1 | -0/+8 |
| * | Stop instantiating a class if we hit a static_assert failure. Also, if the | Richard Smith | 2012-07-11 | 1 | -11/+23 |
| * | Enable comment parsing and semantic analysis to emit diagnostics. A few | Dmitri Gribenko | 2012-07-11 | 1 | -0/+2 |
| * | When marking virtual functions as used for a class' vtable, mark all functions | Richard Smith | 2012-07-07 | 1 | -8/+17 |
| * | Split out the "empty" case for compound statement into a separate ctor. | Benjamin Kramer | 2012-07-04 | 1 | -4/+3 |
| * | Be more eager about setting the 'Invalid' bit on an invalid class | Douglas Gregor | 2012-07-02 | 1 | -0/+2 |
| * | Avoid redundant error when redefining a function as deleted. | David Blaikie | 2012-06-29 | 1 | -2/+2 |
| * | PR12937: Explicitly deleting an explicit template specialization. | David Blaikie | 2012-06-25 | 1 | -2/+7 |
| * | Unrevert r158887, reverted in r158949, along with a fix for the bug which | Richard Smith | 2012-06-25 | 1 | -9/+3 |
| * | Revert r158887. This fixes pr13168. | Rafael Espindola | 2012-06-21 | 1 | -3/+9 |
| * | If an object (such as a std::string) with an appropriate c_str() member function | Richard Smith | 2012-06-21 | 1 | -9/+3 |
| * | Restructure how the driver communicates information about the | John McCall | 2012-06-20 | 1 | -1/+2 |
| * | Documentation cleanup: | James Dennett | 2012-06-15 | 1 | -1/+1 |
| * | Fix T* p to T *p | Richard Trieu | 2012-06-14 | 1 | -2/+2 |
| * | Use a proper visitor to recursively check for uninitialized use in constructors. | Richard Trieu | 2012-06-14 | 1 | -67/+88 |
| * | Allow __attribute__((unused)) for fields and make it silence | Daniel Jasper | 2012-06-13 | 1 | -0/+1 |
| * | Remove CXXRecordDecl flags which are unused after r158289. | Richard Smith | 2012-06-10 | 1 | -24/+16 |
| * | Fix PR13052 properly, by performing special member lookup to determine whether | Richard Smith | 2012-06-10 | 1 | -15/+128 |
| * | PR13064: Store whether an in-class initializer uses direct or copy | Richard Smith | 2012-06-10 | 1 | -9/+11 |
| * | Revert Decl's iterators back to pointer value_type rather than reference valu... | David Blaikie | 2012-06-06 | 1 | -13/+13 |
| * | Introduce -Wunused-private-field. If enabled, this warning detects | Daniel Jasper | 2012-06-06 | 1 | -2/+54 |
| * | Make delegating initializers use a similar codepath to base initializers in d... | Eli Friedman | 2012-05-19 | 1 | -0/+10 |
| * | Apparently empty names are allowed here. | Benjamin Kramer | 2012-05-19 | 1 | -2/+3 |
| * | Simplify some users of DeclarationName::getNameKind. Fold getFETokenInfoAsVoi... | Benjamin Kramer | 2012-05-19 | 1 | -4/+3 |
| * | Fold the six functions checking explicitly-defaulted special member functions | Richard Smith | 2012-05-15 | 1 | -501/+155 |
| * | Move Sema::VerifyIntegerConstantExpression() and | Douglas Gregor | 2012-05-04 | 1 | -2/+2 |
| * | Move Sema::RequireNonAbstractType() off of PartialDiagnostic. | Douglas Gregor | 2012-05-04 | 1 | -8/+21 |
| * | Switch RequireLiteralType() off of PartialDiagnostic. | Douglas Gregor | 2012-05-04 | 1 | -5/+5 |
| * | Move Sema::RequireCompleteType() and Sema::RequireCompleteExprType() | Douglas Gregor | 2012-05-04 | 1 | -4/+3 |
| * | Revert most of r154844, which was disabled in r155975. Keep around the | Richard Smith | 2012-05-02 | 1 | -64/+0 |
| * | Remove the ref/value inconsistency in filter_decl_iterator. | David Blaikie | 2012-04-30 | 1 | -28/+28 |
| * | [class.copy]p23: Fix an assertion caused by incorrect argument numbering in a | Richard Smith | 2012-04-29 | 1 | -2/+2 |
| * | PR12224 (sort of): Diagnose inheriting constructor declarations in C++11 mode. | Richard Smith | 2012-04-27 | 1 | -2/+4 |
| * | PR12625: Cope with classes which have incomplete base or member types: | Richard Smith | 2012-04-25 | 1 | -1/+1 |
| * | PR12629: Cope with parenthesized function types when attaching a delayed | Richard Smith | 2012-04-24 | 1 | -4/+8 |
| * | Fix regression in r154844. If necessary, defer computing adjusted destructor | Richard Smith | 2012-04-21 | 1 | -2/+37 |
| * | SemaDeclCXX.cpp: Fix utf8 in comment. | NAKAMURA Takumi | 2012-04-21 | 1 | -1/+1 |
| * | Fix bug where a class's (deleted) copy constructor would be implicitly given a | Richard Smith | 2012-04-20 | 1 | -12/+15 |
| * | Implement DR1330 in C++11 mode, to support libstdc++4.7 which uses it. | Richard Smith | 2012-04-17 | 1 | -35/+41 |
| * | Implement the last part of C++ [class.mem]p2, delaying the parsing of | Douglas Gregor | 2012-04-16 | 1 | -5/+140 |
| * | Implement C++11 [expr.prim.general]p3, which permits the use of 'this' | Douglas Gregor | 2012-04-16 | 1 | -0/+124 |
| * | My original patch missed the virtual-base case for destroying | John McCall | 2012-04-09 | 1 | -2/+3 |
| * | Fix the access check performed as part of the determination of whether | John McCall | 2012-04-09 | 1 | -2/+23 |
| * | Fix several problems with protected access control: | John McCall | 2012-04-07 | 1 | -1/+9 |
| * | Point the caret at the error for the 'expected namespace name' diagnostic in | Richard Smith | 2012-04-05 | 1 | -1/+1 |
| * | Remove dead assignment to local variable. | Ted Kremenek | 2012-04-04 | 1 | -1/+0 |
| * | PR10217 diagnostic fix: don't say 'copy constructor' when we mean | Richard Smith | 2012-04-02 | 1 | -1/+1 |
| * | Finish PR10217: Ensure we say that a special member was implicitly, not | Richard Smith | 2012-04-02 | 1 | -10/+10 |