소스 검색

Merge pull request #591 from Dmitry-Me/properIndentDirectives

Indent directives consistently with surrounding code
Lee Thomason 8 년 전
부모
커밋
1529580734
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      xmltest.cpp

+ 4 - 2
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);