From 81493f331ce0a9c672ad1bbe5f9362ac5396cb8d Mon Sep 17 00:00:00 2001 From: Bjarne Stroustrup Date: Tue, 16 May 2017 15:58:01 -0400 Subject: [PATCH] Undid untentional change to C.85 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 8b8937c..aedefc4 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -6109,7 +6109,7 @@ This is not just slow, but if a memory allocation occurs for the elements in `tm (Simple) When a class has a `swap` member function, it should be declared `noexcept`. -### : Make `swap` `noexcept` +### : C.85: Make `swap` `noexcept` ##### Reason