From 78b66f4eaea9461544e3e0df4718dd7d03b1ebb8 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sat, 26 Sep 2015 15:32:31 +0200 Subject: [PATCH] Obsolete question marks --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 1bb8bc2..658321a 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -9797,7 +9797,7 @@ Similar for `Vector::sort()`. Unless those two functions are called that's code bloat. Imagine what this would do to a class hierarchy with dozens of member functions and dozens of derived classes with many instantiations. -**Note**: In many cases you can provide a stable interface by not parameterizing a base; see [???](#Rt-abi). +**Note**: In many cases you can provide a stable interface by not parameterizing a base; see [Rule](#Rt-abi). **Enforcement**: