From 88a6c1d7900dad9c11d66cfd91018779f4631241 Mon Sep 17 00:00:00 2001 From: uli Date: Sun, 18 Oct 2015 10:54:59 +0200 Subject: [PATCH] The rule name ES.40 was used twice. --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 99f8ec6..c1248a9 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7881,7 +7881,7 @@ Declaration rules: * [ES.31: Don't use macros for constants or "functions"](#Res-macros2) * [ES.32: Use `ALL_CAPS` for all macro names](#Res-ALL_CAPS) * [ES.33: If you must use macros, give them unique names](#Res-MACROS) -* [ES.40: Don't define a (C-style) variadic function](#Res-ellipses) +* [ES.34: Don't define a (C-style) variadic function](#Res-ellipses) Expression rules: @@ -8860,7 +8860,7 @@ If you are forced to use macros, use long names and supposedly unique prefixes ( Warn against short macro names. -### ES.40: Don't define a (C-style) variadic function +### ES.34: Don't define a (C-style) variadic function ##### Reason