mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 04:44:34 +03:00
Adopting fixes from PR 1411
This commit is contained in:
@@ -15341,7 +15341,7 @@ RAII ("Resource Acquisition Is Initialization") is the simplest, most systematic
|
||||
|
||||
##### Example
|
||||
|
||||
void f1(int i) // Bad: possibly leak
|
||||
void f1(int i) // Bad: possible leak
|
||||
{
|
||||
int* p = new int[12];
|
||||
// ...
|
||||
|
||||
Reference in New Issue
Block a user