diff --git a/cppguide.html b/cppguide.html index bbf1f64d7..761194c66 100644 --- a/cppguide.html +++ b/cppguide.html @@ -3479,7 +3479,8 @@

Class template argument deduction

Lambda expressions

Use lambda expressions where appropriate. Prefer explicit captures -when the lambda will escape the current scope.

+when the lambda will escape the current scope. Do not use [=] +or [=, this] to capture this.

Lambda expressions are a concise way of creating anonymous @@ -3555,13 +3556,19 @@

Lambda expressions