From 12db7f8757ae6d0a0b27b79b47c9b2349711a84b Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 27 Sep 2015 21:44:42 +0200 Subject: [PATCH] Fix html anchors for links --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 658321a..fe48767 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3271,7 +3271,7 @@ Also, copying may lead to slicing. // ... }; -The problem of whether `Handle` is responsible for the destruction of its `Shape` is the same as for the pointer case: +The problem of whether `Handle` is responsible for the destruction of its `Shape` is the same as for [the pointer case](#Rc-dtor-ptr): If the `Handle` owns the object referred to by `s` it must have a destructor. **Example**: @@ -12192,7 +12192,7 @@ Resource management rule summary: int sz; }; -This class is a resource handle. It manages the lifetime of the `T`s. To do so, `Vector` must define or delete the set of special operations (constructors, a destructor, etc.). +This class is a resource handle. It manages the lifetime of the `T`s. To do so, `Vector` must define or delete [the set of special operations](???) (constructors, a destructor, etc.). **Example**: