|
|
|
|
|
by foota
2532 days ago
|
|
Hm, technically don't think this would be required. Take for instance: auto no_destroy = new MoveNoDestroy();
MoveNoDestroy* moved_into;
*moved_into = std::move(*no_destroy);
Wouldn't call the destructor of the moved from MoveNoDestroy. |
|