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

后端 未结 7 1329
小蘑菇
小蘑菇 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

    Did you compile with debugging information enabled and ensure that the pdb file is available by the leak detector? Without this information it wouldn't be able to provide line numbers.

提交回复
热议问题