I'm creating a library that easily adds a bunch of debugging features to c++ programms. At the moment I have these features:
- A more useful assert dialouge.
- Pointer validation using IsBadReadPtr/IsBadWritePtr.
- Memory leak tracking.
I'm trying to think of other features I could add to this. What other features are common features in debug libraries?