From c4f09f2d19fd5a9cd9ab227f5b0e8e326cc2c628 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 27 Sep 2015 19:37:29 +0200 Subject: [PATCH] Fix / Consistent Enforcement sections --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 8cd941b..e92abe6 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7020,7 +7020,7 @@ If at all possible, reduce the conditions to a simple set of alternatives (e.g., case file: owned=true; return *new ifstream{argv[2]}; }(); -**Enforcement:** Hard. At best a heuristic. Look for an unitialized variable followed by a loop assigning to it. +**Enforcement**: Hard. At best a heuristic. Look for an unitialized variable followed by a loop assigning to it. @@ -11517,7 +11517,7 @@ Comments are not updated as consistently as code. if (i==j) return i; -Enforcement: Use a tool. +**Enforcement**: Use a tool.