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
Pointer ownership should be clarified using, e.g., std::unique_ptr. Right now, scratch pointers are being passed around all over the place, and it's not clear what the chain of ownership is. (The pointers are also just NULLed at the end, without any deletes.)
The text was updated successfully, but these errors were encountered:
Pointer ownership should be clarified using, e.g.,
std::unique_ptr
. Right now,scratch
pointers are being passed around all over the place, and it's not clear what the chain of ownership is. (The pointers are also justNULL
ed at the end, without anydelete
s.)The text was updated successfully, but these errors were encountered: