aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/special
AgeCommit message (Expand)Author
2013-04-17PR15755: don't drop parameter packs when dropping parameters with defaultRichard Smith
2013-04-10C++11 inheriting constructors: support for inheriting constructor templates.Richard Smith
2013-04-02If a defaulted special member is implicitly deleted, check whether it'sRichard Smith
2013-03-18Bring inheriting constructor implementation up-to-date with current defectRichard Smith
2013-02-21Try to get buildbots to pass these tests.Bill Wendling
2013-02-20Attempt to clean up tests for non-X86 platforms.Bill Wendling
2013-02-20Remove target-specific features.Bill Wendling
2013-02-20Modify the tests to use attribute group references instead of listing theBill Wendling
2013-02-12Add a test for r174980, that we used to acceptDmitri Gribenko
2013-02-12Accept over-qualified constructor in MSVC emulation modeDmitri Gribenko
2012-12-28Improve diagnostic wording for when an implicitly-deleted special memberRichard Smith
2012-12-11PR14558: Compute triviality of special members (etc) at the end of the classRichard Smith
2012-12-08Finish implementing 'selected constructor' rules for triviality in C++11. InRichard Smith
2012-12-08Properly compute triviality for explicitly-defaulted or deleted special members.Richard Smith
2012-11-28Store on the CXXRecordDecl whether the class has, or would have, a copyRichard Smith
2012-11-13Fix some wrong-code bugs in implicitly-defined assignment operators:Richard Smith
2012-10-20Rework implementation of DR1492: Apply the resolution to operator delete too,Richard Smith
2012-10-19Prior to adding the new "expected-no-diagnostics" directive to VerifyDiagnost...Andy Gibbs
2012-10-16DR1492: In a definition of a destructor, the exception specification must beRichard Smith
2012-07-18PR13381, part 2: when determining if a defaulted special member function shouldRichard Smith
2012-06-08PR13051: If a constructor is explicitly defaulted, it isn't marked as beingRichard Smith
2012-06-05A non-explicit constructor template with a second parameter that is aDouglas Gregor
2012-05-09hopefully fix a bunch of ARM buildbot failuresNuno Lopes
2012-05-07A union can have a constexpr defaulted default constructor, if it has anRichard Smith
2012-04-29[class.copy]p23: Fix an assertion caused by incorrect argument numbering in aRichard Smith
2012-04-27PR12224 (sort of): Diagnose inheriting constructor declarations in C++11 mode.Richard Smith
2012-04-25PR12625: Cope with classes which have incomplete base or member types:Richard Smith
2012-04-20Fix bug where a class's (deleted) copy constructor would be implicitly given aRichard Smith
2012-04-05Improve diagnostics for invalid use of non-static members / this:Richard Smith
2012-04-02PR10217 diagnostic fix: don't say 'copy constructor' when we meanRichard Smith
2012-04-02Finish PR10217: Ensure we say that a special member was implicitly, notRichard Smith
2012-04-02Implement DR1402: if a field or base class is not movable, the derived class'sRichard Smith
2012-04-02Basic semantic analysis support for inheriting constructor declarations inRichard Smith
2012-03-30PR10217: Provide diagnostics explaining why an implicitly-deleted specialRichard Smith
2012-03-03Add a pile of tests for unrestricted unions, and advertise support for them.Richard Smith
2012-02-27Ensure that we delete default constructors in the right cases. Don't delete theRichard Smith
2012-02-26Ensure that we delete destructors in the right cases. Specifically:Richard Smith
2012-02-26Special members which are defaulted or deleted on their first declaration areRichard Smith
2012-02-15When overload resolution picks an implicitly-deleted special memberDouglas Gregor
2012-02-13Update constexpr implementation to match CWG's chosen approach for core issuesRichard Smith
2012-01-11constexpr: fix typo resulting in move constructors sometimes not beingRichard Smith
2011-12-30Unrevert r147271, reverted in r147361.Richard Smith
2011-12-30Revert r147271. This fixes PR11676.Rafael Espindola
2011-12-25constexpr: perform zero-initialization prior to / instead of performing aRichard Smith
2011-12-22PR11614: Mark defaulted special constructors as constexpr if their implicitRichard Smith
2011-12-16Support decltype in pseudo destructors and dependent destructor calls.David Blaikie
2011-12-12Fix/test decltype dtor calls with invalid base expression.David Blaikie
2011-12-08Decltype in non-pseudo (& non-dependent) dtor calls.David Blaikie
2011-11-28When synthesizing an implicitly-defined copy or move constructor, orDouglas Gregor
2011-11-17Include named unions in union member init checkingDavid Blaikie