mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
Restored two more edits
This commit is contained in:
@@ -7909,7 +7909,7 @@ It also ensures exception safety in complex expressions.
|
|||||||
|
|
||||||
##### Example
|
##### Example
|
||||||
|
|
||||||
unique_ptr<Foo> p {new Foo{7}}; // OK: but repetitive
|
unique_ptr<Foo> p {new Foo{7}}; // OK: but repetitive
|
||||||
|
|
||||||
auto q = make_unique<Foo>(7); // Better: no repetition of Foo
|
auto q = make_unique<Foo>(7); // Better: no repetition of Foo
|
||||||
|
|
||||||
@@ -8727,7 +8727,7 @@ Switching on an enumeration is common and the compiler can warn against unusual
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Such off-by-one `switch`statements are often the results of an added enumerator and insufficient testing.
|
Such off-by-one `switch`-statements are often the results of an added enumerator and insufficient testing.
|
||||||
|
|
||||||
##### Enforcement
|
##### Enforcement
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user