diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 97a616c..b8c84f7 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 from n-dimensions static array + g1(a); // OK -- no decay here, instead use implicit span ctor } ##### Enforcement