mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
bump date and make CI happy
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# <a name="main"></a>C++ Core Guidelines
|
# <a name="main"></a>C++ Core Guidelines
|
||||||
|
|
||||||
October 6, 2022
|
April 13, 2023
|
||||||
|
|
||||||
Editors:
|
Editors:
|
||||||
|
|
||||||
@@ -19761,15 +19761,19 @@ Additions to `std` might clash with future versions of the standard.
|
|||||||
##### Example
|
##### Example
|
||||||
|
|
||||||
namespace std { // BAD: violates standard
|
namespace std { // BAD: violates standard
|
||||||
|
|
||||||
class My_vector {
|
class My_vector {
|
||||||
// . . .
|
// . . .
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace Foo { // GOOD: user namespace is allowed
|
namespace Foo { // GOOD: user namespace is allowed
|
||||||
|
|
||||||
class My_vector {
|
class My_vector {
|
||||||
// . . .
|
// . . .
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
##### Enforcement
|
##### Enforcement
|
||||||
|
|||||||
@@ -671,6 +671,8 @@ x22
|
|||||||
xmax
|
xmax
|
||||||
xor
|
xor
|
||||||
Xs
|
Xs
|
||||||
|
y1
|
||||||
|
y2
|
||||||
years'
|
years'
|
||||||
yy
|
yy
|
||||||
Zhuang
|
Zhuang
|
||||||
|
|||||||
Reference in New Issue
Block a user