From 0b4b815d0bcd76f76dff8017a330aa638821c910 Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Mon, 30 Jan 2017 14:26:56 -0500 Subject: [PATCH] uncross links to the self-assignment rules (#830) --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 6e48d08..6035668 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3913,10 +3913,10 @@ Copy and move rules: * [C.60: Make copy assignment non-`virtual`, take the parameter by `const&`, and return by non-`const&`](#Rc-copy-assignment) * [C.61: A copy operation should copy](#Rc-copy-semantic) -* [C.62: Make copy assignment safe for self-assignment](#Rc-move-self) +* [C.62: Make copy assignment safe for self-assignment](#Rc-copy-self) * [C.63: Make move assignment non-`virtual`, take the parameter by `&&`, and return by non-`const&`](#Rc-move-assignment) * [C.64: A move operation should move and leave its source in a valid state](#Rc-move-semantic) -* [C.65: Make move assignment safe for self-assignment](#Rc-copy-self) +* [C.65: Make move assignment safe for self-assignment](#Rc-move-self) * [C.66: Make move operations `noexcept`](#Rc-move-noexcept) * [C.67: A base class should suppress copying, and provide a virtual `clone` instead if "copying" is desired](#Rc-copy-virtual)