From f6dd6159f8eb2f154d28b6132fd583cb8611101a Mon Sep 17 00:00:00 2001 From: Andrew Pardoe Date: Mon, 3 Oct 2016 15:40:56 -0700 Subject: [PATCH] Fix issue #747 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 1d1e427..8e9f645 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -9985,7 +9985,7 @@ The termination condition is at the end (where it can be overlooked) and the con int x; do { cin >> x; - x + // ... } while (x < 0); ##### Enforcement