mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
fix travis CI, update date
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# <a name="main"></a>C++ Core Guidelines
|
# <a name="main"></a>C++ Core Guidelines
|
||||||
|
|
||||||
January 3, 2019
|
March 7, 2019
|
||||||
|
|
||||||
|
|
||||||
Editors:
|
Editors:
|
||||||
@@ -9390,7 +9390,8 @@ Use `span` to preserve size information.
|
|||||||
|
|
||||||
void f(int[]); // not recommended
|
void f(int[]); // not recommended
|
||||||
|
|
||||||
void f(int*); // not recommended for multiple objects (a pointer should point to a single object, do not subscript)
|
void f(int*); // not recommended for multiple objects
|
||||||
|
// (a pointer should point to a single object, do not subscript)
|
||||||
|
|
||||||
void f(gsl::span<int>); // good, recommended
|
void f(gsl::span<int>); // good, recommended
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user