diff options
Diffstat (limited to 'src/development/c++.md')
-rw-r--r-- | src/development/c++.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/development/c++.md b/src/development/c++.md index 2df60c2..1965e33 100644 --- a/src/development/c++.md +++ b/src/development/c++.md @@ -283,12 +283,17 @@ specialization for `is_valid` will be removed from the candidate set due to A more detailed description is available in the SO discussion [How does `void_t` work](https://stackoverflow.com/a/27688405). +## Example: Concepts since c++20 +```cpp +{{#include c++/concepts-20.cc:4:}} +``` + ## Template selection with partially / fully specializations. ```cpp {{#include c++/tmpl-pair.cc:3:}} ``` -# Example: Perfect forwarding +## Example: Perfect forwarding ```cpp {{#include c++/fwd-perfect.cc:3:}} ``` |