From 9c148afad320e9379b31885294c05885aa1354e4 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Tue, 6 Sep 2016 18:31:47 +0900 Subject: [PATCH] Fix transition of *Excption* to #### Exception in 4d7b1d --- CppCoreGuidelines.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 444b332..7496f93 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -11514,7 +11514,10 @@ There are several ways that this example could be made safe for a multi-threaded * Refuse to build and/or run in a multi-threaded environment. * Provide two implementations, one which is used in single-threaded environments and another which is used in multi-threaded environments. - Code that is never run in a multi-threaded environment. +##### Exception + +Code that is never run in a multi-threaded environment. + Be careful: there are many examples where code that was "known" to never run in a multi-threaded program was run as part of a multi-threaded program. Often years later. Typically, such programs lead to a painful effort to remove data races.