Fields
| hardware | None |
| os | None |
Parameters
Fields
| Name | Value |
|---|
Parameters
| Name | Value |
|---|---|
| git_commit |
commit 848b20de76def980d02bb17bcb0bdc95381876df Author: Louis Dionne <ldionne.2@gmail.com> Date: Thu Oct 3 11:45:58 2024 -0400 [libc++] Correctly handle custom deleters in hardened unique_ptr<T[]> (#110685) It turns out that we can never do bounds-checking for unique_ptrs with custom deleters, except when converting from a unique_ptr with a default deleter to one with a custom deleter. If we had an API like `std::make_unique` that allowed passing a custom deleter, we could at least get bounds checking when the unique_ptr is created through those APIs, but for now that is not possible. Fixes #110683 |