mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2024-03-22 13:30:58 +08:00
Do not allocate an excessive amount of memory in example code. (#1788)
This reverts commit de20b33dab
.
This commit is contained in:
parent
e583929996
commit
e2dbebed73
|
@ -20613,7 +20613,7 @@ and errors (when we didn't deal correctly with semi-constructed objects consiste
|
|||
: mx(check_size(x))
|
||||
, my(check_size(y))
|
||||
// now we know x and y have a valid size
|
||||
, data(mx*my*sizeof(int)) // will throw std::bad_alloc on error
|
||||
, data(mx * my) // will throw std::bad_alloc on error
|
||||
{
|
||||
// picture is ready-to-use
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user