Merge pull request #253 from Dmitry-Me/getRidOfC4127InAssert

Suppress C4127 in asserts
This commit is contained in:
Lee Thomason
2014-12-26 16:25:14 -08:00
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();