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
A few places such as in the depo sources, a bare new is used. The heap object is correctly deleted in the destructor. In this particular case, a unique_ptr would provide a more modern idiom if also identical behavior.
Note that components are held by shared_ptr and those that provide WCT flow graph nodes tend to live for the entire job, in practice.
The text was updated successfully, but these errors were encountered:
A few places such as in the depo sources, a bare
new
is used. The heap object is correctly deleted in the destructor. In this particular case, aunique_ptr
would provide a more modern idiom if also identical behavior.Note that components are held by
shared_ptr
and those that provide WCT flow graph nodes tend to live for the entire job, in practice.The text was updated successfully, but these errors were encountered: