I want to detect memory leaks and print them to the output pane in visual studio 2010, I was trying to use _CrtDumpMemoryLeaks() but have since found out that this only works with malloc and free not new and delete. Any suggestions?
write your own memory management class that utilizes malloc and free and functions much like new and delete....can we overload new and delete? I can't remember.