2
votes
memory leaks during development
What operating system are you running? Most operating systems these days will clean up leaked memory for a process when the process exits. It is possible that the memory you are seeing in use is ac …
3
votes
How do I show what fields a struct has in gdb?
You can use the gdb command "ptype" to print out the definition of a struct or class.
…
