Suppress C4127 in asserts
diff --git a/xmltest.cpp b/xmltest.cpp
index 31e1187..4170977 100644
--- a/xmltest.cpp
+++ b/xmltest.cpp
@@ -295,6 +295,10 @@
 		mkdir( "resources/out/", S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);

 	#endif

 

+	{

+		TIXMLASSERT( true );

+	}

+

 	if ( argc > 1 ) {

 		XMLDocument* doc = new XMLDocument();

 		clock_t startTime = clock();