Merge pull request #644 from cubbimew/fix_travis

Fix Travis CI by reverting "Better comment for implicit conversion example"
This commit is contained in:
Gabriel Dos Reis 2016-07-13 13:29:47 -07:00 committed by GitHub
commit 34ff2b0193

View File

@ -15422,7 +15422,7 @@ Pointers should not be used as arrays. `span` is a bounds-checked, safe alternat
span<int> 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