From 10805fb7a138d54286cce3fa46845c34742dff48 Mon Sep 17 00:00:00 2001 From: Ewoud Van Craeynest Date: Thu, 27 Apr 2017 21:44:51 +0200 Subject: [PATCH] ES.24: have TOC rule match body rule --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 3141087..6d004e2 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -9183,7 +9183,7 @@ Declaration rules: * [ES.21: Don't introduce a variable (or constant) before you need to use it](#Res-introduce) * [ES.22: Don't declare a variable until you have a value to initialize it with](#Res-init) * [ES.23: Prefer the `{}`-initializer syntax](#Res-list) -* [ES.24: Use a `unique_ptr` to hold pointers in code that may throw](#Res-unique) +* [ES.24: Use a `unique_ptr` to hold pointers](#Res-unique) * [ES.25: Declare an object `const` or `constexpr` unless you want to modify its value later on](#Res-const) * [ES.26: Don't use a variable for two unrelated purposes](#Res-recycle) * [ES.27: Use `std::array` or `stack_array` for arrays on the stack](#Res-stack)