diff --git a/tinyxml2.cpp b/tinyxml2.cpp index bc34c1f..cd77a96 100755 --- a/tinyxml2.cpp +++ b/tinyxml2.cpp @@ -24,7 +24,7 @@ distribution. #include "tinyxml2.h" #include // yes, this one new style header, is in the Android SDK. -# ifdef ANDROID_NDK +#if defined(ANDROID_NDK) || defined(__QNXNTO__) # include #else # include diff --git a/tinyxml2.h b/tinyxml2.h index 7bcbfeb..10ba955 100755 --- a/tinyxml2.h +++ b/tinyxml2.h @@ -24,7 +24,7 @@ distribution. #ifndef TINYXML2_INCLUDED #define TINYXML2_INCLUDED -#if defined(ANDROID_NDK) || defined(__BORLANDC__) +#if defined(ANDROID_NDK) || defined(__BORLANDC__) || defined(__QNXNTO__) # include # include # include diff --git a/xmltest.cpp b/xmltest.cpp index 206c3a4..18fa8c9 100644 --- a/xmltest.cpp +++ b/xmltest.cpp @@ -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 ) {