mirror of https://github.com/AxioDL/tinyxml2.git
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:
commit
2114e47453
|
@ -24,7 +24,7 @@ distribution.
|
|||
#include "tinyxml2.h"
|
||||
|
||||
#include <new> // yes, this one new style header, is in the Android SDK.
|
||||
# ifdef ANDROID_NDK
|
||||
#if defined(ANDROID_NDK) || defined(__QNXNTO__)
|
||||
# include <stddef.h>
|
||||
#else
|
||||
# include <cstddef>
|
||||
|
|
|
@ -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 <ctype.h>
|
||||
# include <limits.h>
|
||||
# include <stdio.h>
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
#endif
|
||||
|
||||
using namespace tinyxml2;
|
||||
using namespace std;
|
||||
int gPass = 0;
|
||||
int gFail = 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue