From 778b44c2c9d55f2a84a0c93c5b2386a599fe2462 Mon Sep 17 00:00:00 2001 From: Bernd Ritter Date: Thu, 9 Jan 2020 19:01:02 +0100 Subject: [PATCH] Corrected link to noexcept anchor (#1559) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 2417281..47231eb 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -15517,7 +15517,7 @@ One strategy is to add a `valid()` operation to every resource handle: Obviously, this increases the size of the code, doesn't allow for implicit propagation of "exceptions" (`valid()` checks), and `valid()` checks can be forgotten. Prefer to use exceptions. -**See also**: [Use of `noexcept`](#Se-noexcept) +**See also**: [Use of `noexcept`](#Re-noexcept) ##### Enforcement