mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 20:54:41 +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
|
||||
void foo() {
|
||||
...
|
||||
if(x) {
|
||||
if (x) {
|
||||
if (y) {
|
||||
computeImportantThings(x);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user