Removed all references to CrtDebug blabla that were supposed to be

MSVC specific but generated an error with MSVC 6.0
This commit is contained in:
evomarc 2001-12-07 05:51:36 +00:00
commit 9f7976c292
8 changed files with 0 additions and 60 deletions

View file

@ -383,13 +383,6 @@ void main_function(int argc, char **argv)
// A main that catches the exceptions
int main(int argc, char **argv)
{
#ifdef _MSC_VER
int flag = _CrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF);
flag |= _CRTDBG_LEAK_CHECK_DF;
_CrtSetDbgFlag(flag);
// _CrtSetBreakAlloc(100);
#endif
try
{
main_function(argc, argv);