Indent directives consistently with surrounding code

This commit is contained in:
Dmitry-Me 2017-07-26 18:05:25 +03:00
parent f3f9925f12
commit de381df35c
1 changed files with 4 additions and 2 deletions

View File

@ -2118,7 +2118,8 @@ int main( int argc, const char ** argv )
#endif
}
#if defined( _MSC_VER ) && defined( DEBUG )
#if defined( _MSC_VER ) && defined( DEBUG )
{
_CrtMemCheckpoint( &endMemState );
_CrtMemState diffMemState;
@ -2129,7 +2130,8 @@ int main( int argc, const char ** argv )
int leaksBeforeExit = _CrtDumpMemoryLeaks();
XMLTest( "No leaks before exit?", FALSE, leaksBeforeExit );
}
#endif
}
#endif
printf ("\nPass %d, Fail %d\n", gPass, gFail);