From ba8ccd35a545933935f8f41f1fc64c801fa20369 Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Wed, 13 Jul 2016 15:15:23 -0400 Subject: [PATCH] Fix Travis CI by reverting "Better comment for implicit conversion example" This reverts commit c2f54b5ed1cd72523ccdf454e013e2b7df177955. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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