SYeonni Study Room

crtdbg로 디버깅 시 메모리 누수 찾기 본문

게임제작/3D

crtdbg로 디버깅 시 메모리 누수 찾기

SYeonni 2021. 11. 8. 20:43

 

#ifdef _DEBUG
	_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
#endif

//crtdbg로 메모리 누수 찾기

 

라인 추적이 가능

728x90