From 1748ebb45a548516bdfcc7c76009565b86845726 Mon Sep 17 00:00:00 2001 From: Chris Cotter Date: Thu, 12 Jan 2023 17:13:35 -0500 Subject: [PATCH] Editorial - use "capture default" for syntactic element (#2016) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 36d79aa..24e90b1 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4132,7 +4132,7 @@ This is under active discussion in standardization, and might be addressed in a ##### Enforcement -* Flag any lambda capture-list that specifies a default capture and also captures `this` (whether explicitly or via default capture) +* Flag any lambda capture-list that specifies a capture-default and also captures `this` (whether explicitly or via default capture) ### F.55: Don't use `va_arg` arguments