From eb5f6a5b9078a2872024aba17b5fd63bd28a0bdb Mon Sep 17 00:00:00 2001 From: Eliyahu Ravuna Date: Thu, 9 Nov 2017 19:56:41 +0200 Subject: [PATCH] Link added for function objects and lambdas --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 452c104..e2066b8 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2314,7 +2314,7 @@ Other function rules: * [F.54: If you capture `this`, capture all variables explicitly (no default capture)](#Rf-this-capture) * [F.55: Don't use `va_arg` arguments](#F-varargs) -Functions have strong similarities to lambdas and function objects so see also Section ???. +Functions have strong similarities to lambdas and function objects so see also [C.lambdas: Function objects and lambdas](#SS-lambdas). ## F.def: Function definitions