From 4a51d9f129789ce5b574a431fbec0a6b329c3aad Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Fri, 5 Nov 2021 14:41:32 -0400 Subject: [PATCH] satisfy CI checks --- CppCoreGuidelines.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 9f3e967..240dff4 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -16119,9 +16119,8 @@ To rethrow a caught exception use `throw;` not `throw e;`. Using `throw e;` woul ##### Enforcement -- Flag catching by value of a type that has a virtual function. -- Flag throwing raw pointers. - +* Flag catching by value of a type that has a virtual function. +* Flag throwing raw pointers. ### E.16: Destructors, deallocation, and `swap` must never fail