For the new operator, we have the std::nothrow
version:
std::unique_ptr<T> p = new(std::nothrow) T();
Do we have something like this for the std::make_shared
or std::make_unique
?
For the new operator, we have the std::nothrow
version:
std::unique_ptr<T> p = new(std::nothrow) T();
Do we have something like this for the std::make_shared
or std::make_unique
?
Copyright © 2021 Jogjafile Inc.
No, we don't. Looking through the cppreference pages for
make_unique
andmake_shared
, we see that every version uses the defaultnew
overload.It is not difficult to implement one, though, something like this:
(Note that this version of
make_shared_nothrow
does not avoid double allocation asmake_shared
does.) C++20 added many new overloads formake_unique
, but they can be implemented in a similar way. Also, per comment,