From 5276dc55c82dc9ce03aae56a3980361b7273d209 Mon Sep 17 00:00:00 2001 From: hsutter Date: Thu, 7 Mar 2019 11:49:14 -0800 Subject: [PATCH] Closes #1330 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 02293bb..15027fb 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3809,7 +3809,7 @@ There is not a choice when a set of functions are used to do a semantically equi ##### Enforcement - ??? +* Warn on an overload set where the overloads have a common prefix of parameters (e.g., `f(int)`, `f(int, const string&)`, `f(int, const string&, double)`). (Note: Review this enforcement if it's too noisy in practice.) ### F.52: Prefer capturing by reference in lambdas that will be used locally, including passed to algorithms