mirror of https://github.com/AxioDL/tinyxml2.git
Merge pull request #364 from PKEuS/master
Moved include of <cstdarg> to cpp file
This commit is contained in:
commit
bb8fd3c29c
|
@ -26,8 +26,10 @@ distribution.
|
||||||
#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(__QNXNTO__)
|
||||||
# include <stddef.h>
|
# include <stddef.h>
|
||||||
|
# include <stdarg.h>
|
||||||
#else
|
#else
|
||||||
# include <cstddef>
|
# include <cstddef>
|
||||||
|
# include <cstdarg>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(_MSC_VER) && (_MSC_VER >= 1400 ) && (!defined WINCE)
|
#if defined(_MSC_VER) && (_MSC_VER >= 1400 ) && (!defined WINCE)
|
||||||
|
|
|
@ -30,14 +30,12 @@ distribution.
|
||||||
# include <stdio.h>
|
# include <stdio.h>
|
||||||
# include <stdlib.h>
|
# include <stdlib.h>
|
||||||
# include <string.h>
|
# include <string.h>
|
||||||
# include <stdarg.h>
|
|
||||||
#else
|
#else
|
||||||
# include <cctype>
|
# include <cctype>
|
||||||
# include <climits>
|
# include <climits>
|
||||||
# include <cstdio>
|
# include <cstdio>
|
||||||
# include <cstdlib>
|
# include <cstdlib>
|
||||||
# include <cstring>
|
# include <cstring>
|
||||||
# include <cstdarg>
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue