Add example for E.28 (#1385)

pull/1396/head
Amir Livneh 7 years ago committed by Herb Sutter
parent c2a5785d7e
commit e3da8a1fd9

@ -16079,7 +16079,15 @@ When did you last test the return value of `printf()`?
##### Example, bad
???
int last_err;
void f(int n)
{
// ...
p = static_cast<X*>(malloc(n * sizeof(X)));
if (!p) last_err = -1; // error if memory is exhausted
// ...
}
##### Note

Loading…
Cancel
Save