From 610fa78c68c2108c64beda197f46c2ccb3fd7cc9 Mon Sep 17 00:00:00 2001 From: John Freeman Date: Fri, 9 Aug 2024 17:13:47 -0500 Subject: [PATCH] JCF: add the C++20 features to the ToC --- docs/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index cea7e2a89..00f086fbd 100644 --- a/docs/README.md +++ b/docs/README.md @@ -19,7 +19,8 @@ * [3.2 The #define Guard](#32-the-define-guard) * [3.3 Inline Functions](#33-inline-functions) * [3.4 Names and Order of Includes](#34-names-and-order-of-includes) - * [3.5 Quotes vs. Angle Brackets for includes](#35-quotes-vs-angle-brackets-for-includes) + * [3.5 Quotes vs. Angle Brackets for includes](#35-quotes-vs-angle-brackets-for-includes) + * [3.6 Modules](#36-modules) * [4. Scoping](#4-scoping) * [4.1 Namespaces](#41-namespaces) * [4.2 Unnamed Namespaces and Static Variables](#42-unnamed-namespaces-and-static-variables) @@ -45,6 +46,7 @@ * [6.6 Default Arguments](#66-default-arguments) * [6.7 Trailing Return Type Syntax](#67-trailing-return-type-syntax) * [6.8 Ownership and Smart Pointers](#68-ownership-and-smart-pointers) + * [6.9 Coroutines](#69-coroutines) * [7. Other C++ Features](#7-other-c-features) * [7.1 Rvalue References](#71-rvalue-references) * [7.2 Friends](#72-friends) @@ -63,6 +65,8 @@ * [7.15 0 and nullptr/NULL](#715-0-and-nullptrnull) * [7.16 sizeof](#716-sizeof) * [7.17 Type deduction](#717-type-deduction) + * [7.18 Concepts](#718-concepts) + * [7.19 Ranges](#719-ranges) * [8. Comments](#8-comments) * [8.1 Intro](#81-intro) * [8.2 Comment Style](#82-comment-style)