Merge pull request #427 from wvvelzen/bcb6fix

Fix for Borland C++ Builder 6
This commit is contained in:
Lee Thomason 2016-03-25 07:41:05 -07:00
commit 3d60e25c4a
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ distribution.
#include "tinyxml2.h" #include "tinyxml2.h"
#include <new> // yes, this one new style header, is in the Android SDK. #include <new> // yes, this one new style header, is in the Android SDK.
#if defined(ANDROID_NDK) || defined(__QNXNTO__) #if defined(ANDROID_NDK) || defined(__BORLANDC__) || defined(__QNXNTO__)
# include <stddef.h> # include <stddef.h>
# include <stdarg.h> # include <stdarg.h>
#else #else