From d318a68e35410f92cb840f8672646bc1bed35097 Mon Sep 17 00:00:00 2001 From: Artem Golubikhin Date: Tue, 19 Sep 2017 00:50:19 +0300 Subject: [PATCH] ES.20: Fix typo (#1033) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index b9928bd..c1edeb3 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10108,7 +10108,7 @@ Many such errors are introduced during maintenance years after the initial imple ##### Exception -It you are declaring an object that is just about to be initialized from input, initializing it would cause a double initialization. +If you are declaring an object that is just about to be initialized from input, initializing it would cause a double initialization. However, beware that this may leave uninitialized data beyond the input -- and that has been a fertile source of errors and security breaches: constexpr int max = 8 * 1024;