Beef
Beef copied to clipboard
[Enhancement] DeallocStackTrace
A "DeallocStackTrace" could be quite useful while debugging double deletes or attempts to access deleted objects.
Currently, it's possible to get it if you use the code below and look at the _deallocStackTrace's AllocStackTrace, but if this was available by default or as an opt-in setting in the Workspace properties it surely would be better.
#if DEBUG
private Object _deallocStackTrace ~ { _ = new Object(); delete _; }
#endif