Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [c++20] Implement P1946R0: allow defaulted comparisons to take their | Richard Smith | 2019-12-10 | 1 | -0/+12 |
| | | | | arguments by value. | ||||
* | [c++20] Delete defaulted comparison functions if they would invoke an | Richard Smith | 2019-12-10 | 1 | -0/+65 |
| | | | | inaccessible comparison function. | ||||
* | [c++20] Defaulted comparison support for array members. | Richard Smith | 2019-12-09 | 2 | -7/+12 |
| | |||||
* | [c++20] Synthesis of defaulted comparison functions. | Richard Smith | 2019-12-08 | 2 | -6/+23 |
| | | | | | | Array members are not yet handled. In addition, defaulted comparisons can't yet find comparison operators by unqualified lookup (only by member lookup and ADL). These issues will be fixed in follow-on changes. | ||||
* | [c++20] Determine whether a defaulted comparison should be deleted or | Richard Smith | 2019-12-06 | 2 | -5/+47 |
| | | | | constexpr. | ||||
* | [c++2a] Allow comparison functions to be explicitly defaulted. | Richard Smith | 2019-10-22 | 1 | -0/+25 |
This adds some initial syntactic checking that only the appropriate function signatures can be defaulted. No implicit definitions are generated yet. |