Merge pull request #230 from antonindrawan/master

Compile TinyXml2 with the Dinkum C++ of QNX 6.5 and QNX 6.6.
This commit is contained in:
Lee Thomason
2014-11-27 22:34:34 -08:00
3 changed files with 5 additions and 4 deletions

View File

@@ -23,6 +23,7 @@
#endif
using namespace tinyxml2;
using namespace std;
int gPass = 0;
int gFail = 0;
@@ -298,10 +299,10 @@ int main( int argc, const char ** argv )
XMLDocument* doc = new XMLDocument();
clock_t startTime = clock();
doc->LoadFile( argv[1] );
clock_t loadTime = clock();
clock_t loadTime = clock();
int errorID = doc->ErrorID();
delete doc; doc = 0;
clock_t deleteTime = clock();
clock_t deleteTime = clock();
printf( "Test file '%s' loaded. ErrorID=%d\n", argv[1], errorID );
if ( !errorID ) {