From bb4202ed927503da0503a981296b3111829c849f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johel=20Ernesto=20Guerrero=20Pe=C3=B1a?= Date: Fri, 30 Dec 2016 17:28:21 -0400 Subject: [PATCH] GSL.concept: Dead link fix Described in #407, 4a9e41d7 added the section but didn't fix the links. --- CppCoreGuidelines.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 8df991e..297cf70 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -17708,9 +17708,9 @@ Most of the concepts below are defined in [the Ranges TS](http://www.open-std.or * `String` // ??? * `Number` // ??? * `Sortable` -* `Pointer` // A type with `*`, `->`, `==`, and default construction (default construction is assumed to set the singular "null" value); see [smart pointers](#Rr-smartptrconcepts) -* `Unique_ptr` // A type that matches `Pointer`, has move (not copy), and matches the Lifetime profile criteria for a `unique` owner type; see [smart pointers](#Rr-smartptrconcepts) -* `Shared_ptr` // A type that matches `Pointer`, has copy, and matches the Lifetime profile criteria for a `shared` owner type; see [smart pointers](#Rr-smartptrconcepts) +* `Pointer` // A type with `*`, `->`, `==`, and default construction (default construction is assumed to set the singular "null" value); see [smart pointers](#SS-gsl-smartptrconcepts) +* `Unique_ptr` // A type that matches `Pointer`, has move (not copy), and matches the Lifetime profile criteria for a `unique` owner type; see [smart pointers](#SS-gsl-smartptrconcepts) +* `Shared_ptr` // A type that matches `Pointer`, has copy, and matches the Lifetime profile criteria for a `shared` owner type; see [smart pointers](#SS-gsl-smartptrconcepts) * `EqualityComparable` // ???Must we suffer CaMelcAse??? * `Convertible` * `Common`