Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Concepts] Deprecate -fconcepts-ts, enable Concepts under -std=c++2a | Saar Raz | 2020-01-24 | 1 | -1/+1 |
| | | | | | | | | | 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) | ||||
* | [Concepts] Type Constraints | Saar Raz | 2020-01-15 | 1 | -0/+52 |
Add support for type-constraints in template type parameters. Also add support for template type parameters as pack expansions (where the type constraint can now contain an unexpanded parameter pack). Differential Revision: https://reviews.llvm.org/D44352 |