You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Investigate whether the usage of std::enable_shared_from_this can help in our library.
One of the pain points is that we have to forbid static allocation. However, that would let us in many parts of the library to take the shared pointer of the current instance instead of creating a new one.
The text was updated successfully, but these errors were encountered:
Investigate whether the usage of
std::enable_shared_from_this
can help in our library.One of the pain points is that we have to forbid static allocation. However, that would let us in many parts of the library to take the shared pointer of the current instance instead of creating a new one.
The text was updated successfully, but these errors were encountered: