2
0
mirror of https://github.com/boostorg/mpi.git synced 2026-02-24 04:02:19 +00:00
Files
mpi/include
Andrey Semashev b21d956760 Fix incorrect usage of auto_ptr to free an array (#38)
The `auto_ptr` would use `delete p` to free an array allocated with `operator new[]`, which could result in heap corruption. Replaced it with `scoped_array`.
2017-02-22 19:17:32 -07:00
..