From de381df35c3aab79d2750a4949648af519dbb81f Mon Sep 17 00:00:00 2001 From: Dmitry-Me Date: Wed, 26 Jul 2017 18:05:25 +0300 Subject: [PATCH] Indent directives consistently with surrounding code --- xmltest.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/xmltest.cpp b/xmltest.cpp index 10c7dba..3067f7b 100644 --- a/xmltest.cpp +++ b/xmltest.cpp @@ -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);