File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1747,7 +1747,7 @@ Make the interface precisely specified and compile-time checkable in the (not so
1747
1747
1748
1748
##### Example
1749
1749
1750
- Use the ISO Concepts TS style of requirements specification. For example:
1750
+ Use the C++20 style of requirements specification. For example:
1751
1751
1752
1752
template<typename Iter, typename Val>
1753
1753
// requires InputIterator<Iter> && EqualityComparable<ValueType<Iter>>, Val>
@@ -1758,7 +1758,7 @@ Use the ISO Concepts TS style of requirements specification. For example:
1758
1758
1759
1759
##### Note
1760
1760
1761
- Soon (maybe in 2018 ), most compilers will be able to check `requires` clauses once the `//` is removed.
1761
+ Soon (in C++20 ), all compilers will be able to check `requires` clauses once the `//` is removed.
1762
1762
Concepts are supported in GCC 6.1 and later.
1763
1763
1764
1764
**See also**: [Generic programming](#SS-GP) and [concepts](#SS-concepts).
You can’t perform that action at this time.
0 commit comments