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