| Commit message (Expand) | Author | Age | Files | Lines |
| * | When implicit definition of the copy-assignment operator fails, | Douglas Gregor | 2010-05-05 | 1 | -6/+12 |
| * | Reimplement code generation for copying fields in the | Douglas Gregor | 2010-05-05 | 1 | -49/+96 |
| * | When creating a call to a base subobject's operator= in an | Douglas Gregor | 2010-05-04 | 1 | -4/+29 |
| * | When inheriting a default argument expression, inherit the full expression, | John McCall | 2010-05-04 | 1 | -2/+4 |
| * | Diagnose unused exception parameters under a different warning group | Douglas Gregor | 2010-05-03 | 1 | -1/+2 |
| * | When creating the declaration reference for implicit copy-construction | Douglas Gregor | 2010-05-03 | 1 | -1/+1 |
| * | When declaring a namespace alias, ignore previous declarations that | Douglas Gregor | 2010-05-03 | 1 | -3/+7 |
| * | Replace a char*/size pair with stringref. | Benjamin Kramer | 2010-05-03 | 1 | -4/+3 |
| * | Add an enum to CXXConstructExpr so we can determine if the construction expre... | Anders Carlsson | 2010-05-02 | 1 | -4/+4 |
| * | Complete reimplementation of the synthesis for implicitly-defined copy | Douglas Gregor | 2010-05-01 | 1 | -82/+404 |
| * | When defining implicit copy constructors, use SetBaseOrMemberInitializers to ... | Anders Carlsson | 2010-05-01 | 1 | -20/+18 |
| * | Added an RAII object that helps set up/tear down the Sema context | Douglas Gregor | 2010-05-01 | 1 | -19/+31 |
| * | It turns out that basically every caller to RequireCompleteDeclContext | John McCall | 2010-05-01 | 1 | -2/+2 |
| * | More of Sema to implement initialization of | Fariborz Jahanian | 2010-04-28 | 1 | -0/+41 |
| * | Improve the diagnostic you get when making a qualified member access | John McCall | 2010-04-27 | 1 | -1/+1 |
| * | Revert enough of my patches to fix self-host again :( | Anders Carlsson | 2010-04-25 | 1 | -14/+18 |
| * | Add an explicit UsuallyTinyPtrVector that takes a single element. | Anders Carlsson | 2010-04-24 | 1 | -3/+2 |
| * | DefineImplicitCopyConstructor now uses SetBaseOrMemberInitializers to create ... | Anders Carlsson | 2010-04-24 | 1 | -18/+14 |
| * | When building implicit base initializers, add a derived-to-base cast that poi... | Anders Carlsson | 2010-04-24 | 1 | -0/+7 |
| * | Actually produce base paths for CastExprs of kind CK_DerivedToBase. | Anders Carlsson | 2010-04-24 | 1 | -15/+38 |
| * | Pass the base specifiers through to CheckDerivedToBaseConversion. No function... | Anders Carlsson | 2010-04-24 | 1 | -10/+19 |
| * | Keep track of when DependentNameTypes have no associated keyword | Douglas Gregor | 2010-04-24 | 1 | -1/+2 |
| * | Cleanup. | Anders Carlsson | 2010-04-23 | 1 | -2/+1 |
| * | Handle copy initialization in BuildImplicitMemberInitializer. Not used yet. | Anders Carlsson | 2010-04-23 | 1 | -6/+35 |
| * | Add an ImplicitInitializerKind enum and pass it to BuildImplicitBaseInitializ... | Anders Carlsson | 2010-04-23 | 1 | -11/+62 |
| * | Fix a think-o that broke self-host. | Anders Carlsson | 2010-04-23 | 1 | -20/+20 |
| * | Factor code to initialize an implicit member out into a separate function. | Anders Carlsson | 2010-04-23 | 1 | -39/+62 |
| * | Remove calls to isDependentContext, since we handle that case earlier in the ... | Anders Carlsson | 2010-04-23 | 1 | -23/+15 |
| * | Re-land the patch that merges two diagnostics into one now that it passes sel... | Anders Carlsson | 2010-04-22 | 1 | -1/+1 |
| * | Remove an unused declaration. | Anders Carlsson | 2010-04-21 | 1 | -1/+0 |
| * | Keep tack of whether a base in an InitializedEntity is an inherited virtual b... | Anders Carlsson | 2010-04-21 | 1 | -6/+19 |
| * | Factor some common code out into a separate function. | Anders Carlsson | 2010-04-20 | 1 | -37/+40 |
| * | Keep track of the actual storage specifier written on a variable or | Douglas Gregor | 2010-04-19 | 1 | -2/+7 |
| * | Vtable -> VTable renames across the board. | Anders Carlsson | 2010-04-17 | 1 | -2/+2 |
| * | Collapse the three separate initialization paths in | Douglas Gregor | 2010-04-16 | 1 | -107/+0 |
| * | Silence warning. | Benjamin Kramer | 2010-04-16 | 1 | -1/+1 |
| * | Audit uses of Sema::LookupSingleName for those lookups that are | Douglas Gregor | 2010-04-15 | 1 | -1/+2 |
| * | Feed proper source-location information into Sema::LookupSingleResult, | Douglas Gregor | 2010-04-15 | 1 | -3/+5 |
| * | Warn about non-aggregate classes with no user-declared constructors | Douglas Gregor | 2010-04-15 | 1 | -0/+24 |
| * | Teach typo correction about various language keywords. We can't | Douglas Gregor | 2010-04-14 | 1 | -1/+2 |
| * | Refactor and simplify the computation of implicit conversion sequences | Douglas Gregor | 2010-04-13 | 1 | -468/+0 |
| * | During referencing binding, only consider conversion functions for | Douglas Gregor | 2010-04-13 | 1 | -7/+9 |
| * | Allow classes to befriend implicitly-declared members. Fixes PR6207 for | John McCall | 2010-04-13 | 1 | -2/+6 |
| * | Diagnose declarations of conversion functions with declarators other than '()'. | John McCall | 2010-04-13 | 1 | -13/+25 |
| * | When creating the implicitly-declared special member functions, be | Douglas Gregor | 2010-04-12 | 1 | -8/+23 |
| * | Have the CXXBaseOrMemberInitializer keep track of whether an initializer init... | Anders Carlsson | 2010-04-12 | 1 | -0/+5 |
| * | Diagnose more cases of initializing distinct members of an anonymous union | John McCall | 2010-04-10 | 1 | -26/+95 |
| * | Diagnose misordered initializers in constructor templates immediately instead of | John McCall | 2010-04-10 | 1 | -57/+56 |
| * | Suppress access control diagnostics when looking up a base or member name | John McCall | 2010-04-09 | 1 | -0/+3 |
| * | Make CXXScopeSpec invalid when incomplete, and propagate that into any | Jeffrey Yasskin | 2010-04-08 | 1 | -5/+5 |