mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
CI fixes
This commit is contained in:
@@ -4080,7 +4080,7 @@ Use a guard-clause to take care of exceptional cases and return early.
|
|||||||
// Bad: Unnecessary nesting of conditions
|
// Bad: Unnecessary nesting of conditions
|
||||||
void foo() {
|
void foo() {
|
||||||
...
|
...
|
||||||
if(x) {
|
if (x) {
|
||||||
if (y) {
|
if (y) {
|
||||||
computeImportantThings(x);
|
computeImportantThings(x);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -105,6 +105,7 @@ Const
|
|||||||
constcast
|
constcast
|
||||||
constexpr
|
constexpr
|
||||||
constness
|
constness
|
||||||
|
constref
|
||||||
copy2
|
copy2
|
||||||
coro
|
coro
|
||||||
CORBA
|
CORBA
|
||||||
@@ -511,6 +512,7 @@ sharedptrparam
|
|||||||
'sharedptrparam'
|
'sharedptrparam'
|
||||||
setjmp
|
setjmp
|
||||||
SignedIntegral
|
SignedIntegral
|
||||||
|
signedness
|
||||||
simpleFunc
|
simpleFunc
|
||||||
'size'
|
'size'
|
||||||
sizeof
|
sizeof
|
||||||
@@ -596,6 +598,7 @@ u2
|
|||||||
UDLs
|
UDLs
|
||||||
unaliased
|
unaliased
|
||||||
uncompromised
|
uncompromised
|
||||||
|
uncopyable
|
||||||
underuse
|
underuse
|
||||||
undetached
|
undetached
|
||||||
unencapsulated
|
unencapsulated
|
||||||
|
|||||||
Reference in New Issue
Block a user