From f4ad185de50a9b6c8b140b3190c57203386da4cb Mon Sep 17 00:00:00 2001 From: grzebiel Date: Sat, 9 Jul 2016 23:14:47 +0200 Subject: [PATCH] visualy align comments --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index d9a222c..b8c2b7d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -15422,7 +15422,7 @@ Pointers should not be used as arrays. `span` is a bounds-checked, safe alternat span av = a; g(av.data(), av.length()); // OK, if you have no choice - g1(a); // OK -- no decay here, instead use implicit span ctor + g1(a); // OK -- no decay here, instead use implicit span ctor } ##### Enforcement