Created
August 7, 2019 04:52
-
-
Save equalent/3e227292ab59ba37c450cbcc265c7541 to your computer and use it in GitHub Desktop.
Useful MSVC stuff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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