Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | PR44723: Trigger return type deduction for operator<=>s whose return | Richard Smith | 2020-01-31 | 1 | -0/+33 |
| | | | | | | | | | | types are needed to compute the return type of a defaulted operator<=>. This raises the question of what to do if return type deduction fails. The standard doesn't say, and implementations vary, so for now reject that case eagerly to keep our options open. (cherry picked from commit 42d4a55f227a1cc78ab8071062d869abe88655d9) | ||||
* | [Concepts] Deprecate -fconcepts-ts, enable Concepts under -std=c++2a | Saar Raz | 2020-01-24 | 1 | -3/+2 |
| | | | | | | | | | Now with concepts support merged and mostly complete, we do not need -fconcepts-ts (which was also misleading as we were not implementing the TS) and can enable concepts features under C++2a. A warning will be generated if users still attempt to use -fconcepts-ts. (cherry picked from commit 67c608a9695496cfc9d3fdf9d0b12b554ac6b4df) | ||||
* | [c++20] Return type deduction for defaulted three-way comparisons. | Richard Smith | 2019-12-10 | 1 | -0/+125 |