From 3a6466f09c4b8465581cac713871b2032bcabbff Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Thu, 20 Jul 2017 12:50:20 +0100 Subject: [PATCH] Fix anchor links with double hash symbols --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 29f743d..d2552a7 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -15052,7 +15052,7 @@ The standard library assumes that destructors, deallocation functions (e.g., `op Deallocation functions, including `operator delete`, must be `noexcept`. `swap` functions must be `noexcept`. Most destructors are implicitly `noexcept` by default. -Also, [make move operations `noexcept`](##Rc-move-noexcept). +Also, [make move operations `noexcept`](#Rc-move-noexcept). ##### Enforcement @@ -15153,7 +15153,7 @@ Consider `finally` a last resort. ##### Note -Use of `finally` is a systematic and reasonably clean alternative to the old [`goto exit;` technique](##Re-no-throw-codes) +Use of `finally` is a systematic and reasonably clean alternative to the old [`goto exit;` technique](#Re-no-throw-codes) for dealing with cleanup where resource management is not systematic. ##### Enforcement