Skip to content

Commit 8b94f6e

Browse files
committed
I.9: update outdated note that talks of 2018 as the future, closes #1525
1 parent 62be4c8 commit 8b94f6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CppCoreGuidelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1747,7 +1747,7 @@ Make the interface precisely specified and compile-time checkable in the (not so
17471747

17481748
##### Example
17491749

1750-
Use the ISO Concepts TS style of requirements specification. For example:
1750+
Use the C++20 style of requirements specification. For example:
17511751

17521752
template<typename Iter, typename Val>
17531753
// requires InputIterator<Iter> && EqualityComparable<ValueType<Iter>>, Val>
@@ -1758,7 +1758,7 @@ Use the ISO Concepts TS style of requirements specification. For example:
17581758

17591759
##### Note
17601760

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.
17621762
Concepts are supported in GCC 6.1 and later.
17631763

17641764
**See also**: [Generic programming](#SS-GP) and [concepts](#SS-concepts).

0 commit comments

Comments
 (0)