mirror of
https://github.com/boostorg/mpi.git
synced 2026-02-24 04:02:19 +00:00
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`.