From c2266bd8e4b6995f2bc1634658fc0c85b0fdc9e7 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sat, 26 Sep 2015 15:35:54 +0200 Subject: [PATCH] fix bad indentation, causes bullet list to become code block --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 7f79adb..f553677 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2347,7 +2347,7 @@ rather than using the generic `tuple`. **Enforcement**: - * Output parameters should be replaced by return values. +* Output parameters should be replaced by return values. An output parameter is one that the function writes to, invokes a non-`const` member function, or passes on as a non-`const`. @@ -2556,7 +2556,7 @@ For passthrough functions that pass in parameters (by ordinary reference or by p **Enforcement**: - * Warn on use of a named non-generic lambda (e.g., `auto x = [](int i){ /*...*/; };`) that captures nothing and appears at global scope. Write an ordinary function instead. +* Warn on use of a named non-generic lambda (e.g., `auto x = [](int i){ /*...*/; };`) that captures nothing and appears at global scope. Write an ordinary function instead.