Descriptions of C++17 features, presented mostly in "Tony Tables" (hey, the name wasn't my idea)
-
Updated
Jun 16, 2021
Add a description, image, and links to the variant topic page so that developers can more easily learn about it.
To associate your repository with the variant topic, visit your repo's landing page and select "manage topics."
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 thi