From 3e1519beb3441ec9d2b2da4b3091e1ecf2e204e4 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Thu, 11 Aug 2016 18:50:53 +0200 Subject: [PATCH] bad parens within name --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 4f22a79..6f73058 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -12377,7 +12377,7 @@ One way of avoiding such problems is to use resource handles consistently: Another solution (often better) would be to use a local variable to eliminate explicit use of pointers: - void no_leak(_simplified(int x) + void no_leak_simplified(int x) { vector v(7); // ...