From c83bdc5495d4db4e516f3a0bd949d5a0e5d40b45 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sat, 26 Sep 2015 19:33:52 +0200 Subject: [PATCH] fix double hash and missing Discussion --- CppCoreGuidelines.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 7b641f4..ce40646 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -8377,7 +8377,7 @@ doesn't allow for implicit propagation of "exceptions" (`valid()` checks), and `valid()` checks can be forgotten. Prefer to use exceptions. -**See also**: [discussion](##Sd-noexcept). +**See also**: [discussion](#Sd-noexcept). **Enforcement**: ??? @@ -11994,7 +11994,9 @@ In general, however, avoid concrete base classes (see Item 35). For example, `un **References**: [[C++CS]](#C++CS) Item 50, [[Cargill92]](#Cargill92) pp. 77-79, 207¸ [[Cline99]](#Cline99) §21.06, 21.12-13¸ [[Henricson97]](#Henricson97) pp. 110-114¸ [[Koenig97]](#Koenig97) Chapters 4, 11¸ [[Meyers97]](#Meyers97) §14¸ [[Stroustrup00]](#Stroustrup00) §12.4.2¸ [[Sutter02]](#Sutter02) §27¸ [[Sutter04]](#Sutter04) §18 +### Dicussion: Usage of noexecpt +???