shared_ptr array specialization #20
Labels
Complexity: Low
This should take a day or two of work
Good First Issue
A good issue to start off with if contributing to this project
Priority: Low
Low priority task (address at liesure)
Status: Accepted
Indicates that a request has been accepted (For "Issues" only)
Type: Refactoring
Indicates that a task is for refactoring/cleaning up existing code
Checklist
Description
C++11 introduced
shared_ptr
, which works withT[]
types -- but only if the type is given a custom deleter. C++20 expanded this to supportshared_ptr<T[]>
, and introduces an overload formake_shared
for this.Backport should be updated to support this.
The text was updated successfully, but these errors were encountered: