From f59b024b7f0cfab96958bf53506e77af7397c5d1 Mon Sep 17 00:00:00 2001 From: Adam Schwalm Date: Fri, 18 Sep 2015 16:06:37 -0500 Subject: [PATCH] Remove unnecessary reference to 'no naked new' in ES.62 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 4c5d4bd..a5021f2 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7701,7 +7701,7 @@ There can be code in the `...` part that causes the `delete` never to happen. if (0<&a1[5]-&a2[7]) // bad: undefined } -**Note**: This example also violates the [no naked `new` rule](#Res-new) and has many more problems. +**Note**: This example has many more problems. **Enforcement**: