From 4d86abfdb47bba7e84287ade082653c469a3be54 Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Mon, 30 Jan 2017 14:27:13 -0500 Subject: [PATCH] When the title of ES.56 was changed, its entry in the ES ToC wasn't (#831) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 6035668..e472f18 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -8736,7 +8736,7 @@ Expression rules: * [ES.49: If you must use a cast, use a named cast](#Res-casts-named) * [ES.50: Don't cast away `const`](#Res-casts-const) * [ES.55: Avoid the need for range checking](#Res-range-checking) -* [ES.56: Avoid `std::move()` in application code](#Res-move) +* [ES.56: Write `std::move()` only when you need to explicitly move an object to another scope](#Res-move) * [ES.60: Avoid `new` and `delete` outside resource management functions](#Res-new) * [ES.61: Delete arrays using `delete[]` and non-arrays using `delete`](#Res-del) * [ES.62: Don't compare pointers into different arrays](#Res-arr2)