@@ -35,23 +35,24 @@ You can [read an explanation of the scope and structure of this Guide](#S-abstra
35
35
* [Enum: Enumerations](#S-enum)
36
36
* [R: Resource management](#S-resource)
37
37
* [ES: Expressions and statements](#S-expr)
38
+ * [PER: Performance](#S-performance)
39
+ * [CP: Concurrency](#S-concurrency)
38
40
* [E: Error handling](#S-errors)
39
41
* [Con: Constants and immutability](#S-const)
40
42
* [T: Templates and generic programming](#S-templates)
41
- * [CP: Concurrency](#S-concurrency)
42
- * [SL: The Standard library](#S-stdlib)
43
- * [SF: Source files](#S-source)
44
43
* [CPL: C-style programming](#S-cpl)
45
- * [PRO: Profiles](#S-profile)
46
- * [GSL: Guideline support library](#S-gsl)
47
- * [FAQ: Answers to frequently asked questions](#S-faq)
44
+ * [SF: Source files](#S-source)
45
+ * [SL: The Standard library](#S-stdlib)
48
46
49
47
Supporting sections:
50
48
51
- * [NL: Naming and layout](#S-naming)
52
- * [PER: Performance](#S-performance)
49
+ * [A: Architectural Ideas](#S-A)
53
50
* [N: Non-Rules and myths](#S-not)
54
51
* [RF: References](#S-references)
52
+ * [PRO: Profiles](#S-profile)
53
+ * [GSL: Guideline support library](#S-gsl)
54
+ * [NL: Naming and layout](#S-naming)
55
+ * [FAQ: Answers to frequently asked questions](#S-faq)
55
56
* [Appendix A: Libraries](#S-libraries)
56
57
* [Appendix B: Modernizing code](#S-modernizing)
57
58
* [Appendix C: Discussion](#S-discussion)
@@ -7881,7 +7882,7 @@ Declaration rules:
7881
7882
* [ES.31: Don't use macros for constants or "functions"](#Res-macros2)
7882
7883
* [ES.32: Use `ALL_CAPS` for all macro names](#Res-ALL_CAPS)
7883
7884
* [ES.33: If you must use macros, give them unique names](#Res-MACROS)
7884
- * [ES.40 : Don't define a (C-style) variadic function](#Res-ellipses)
7885
+ * [ES.34 : Don't define a (C-style) variadic function](#Res-ellipses)
7885
7886
7886
7887
Expression rules:
7887
7888
@@ -8860,7 +8861,7 @@ If you are forced to use macros, use long names and supposedly unique prefixes (
8860
8861
8861
8862
Warn against short macro names.
8862
8863
8863
- ### <a name="Res-ellipses"></a>ES.40 : Don't define a (C-style) variadic function
8864
+ ### <a name="Res-ellipses"></a> ES.34 : Don't define a (C-style) variadic function
8864
8865
8865
8866
##### Reason
8866
8867
0 commit comments