Suppress C4127 in asserts

This commit is contained in:
Dmitry-Me
2014-12-25 19:05:18 +03:00
parent 69242c4b9b
commit 4bcbf142a8
3 changed files with 6 additions and 8 deletions

View File

@@ -295,6 +295,10 @@ int main( int argc, const char ** argv )
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();