Skip to content

Instantly share code, notes, and snippets.

@equalent
Created August 7, 2019 04:52
Show Gist options
  • Select an option

  • Save equalent/3e227292ab59ba37c450cbcc265c7541 to your computer and use it in GitHub Desktop.

Select an option

Save equalent/3e227292ab59ba37c450cbcc265c7541 to your computer and use it in GitHub Desktop.
Useful MSVC stuff
#if defined(_MSC_VER)
_CrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF|_CRTDBG_ALLOC_MEM_DF);
_CrtSetReportMode(_CRT_ASSERT,_CRTDBG_MODE_FILE);
_CrtSetReportFile(_CRT_ASSERT,_CRTDBG_FILE_STDERR);
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment