memory leak detecting in C++ with/without Visual Leak Detector

后端 未结 7 1338
小蘑菇
小蘑菇 2020-12-13 22:31

I want to detect memory leaks of my C++ program in Windows. I read the documentation also on MSDN about mermoy leak detection and I also started using Visua

7条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-13 23:01

    This is the output from Visual Studio's own debug CRT, not the output from Visual Leak Detector. Firstly ensure that you're using the current version at Codeplex and that you have #included vld.h in your project. You will get a much more informative output.

提交回复
热议问题