commit | 358202c77afedd3d79917930ae489d2d7d2bec74 | [log] [tgz] |
---|---|---|
author | Philipp Kloke <philipp.kloke@web.de> | Thu Jul 30 16:02:26 2015 +0200 |
committer | Philipp Kloke <philipp.kloke@web.de> | Thu Jul 30 16:02:26 2015 +0200 |
tree | 19bb7f38a61314c9beb2b235086030d79dfc373a | |
parent | 78fca3db835a5e2de1f3e90f5c6362dda750e3ac [diff] [blame] |
Moved include of <cstdarg> to cpp file
diff --git a/tinyxml2.cpp b/tinyxml2.cpp index edf714d..c1589ec 100755 --- a/tinyxml2.cpp +++ b/tinyxml2.cpp
@@ -26,8 +26,10 @@ #include <new> // yes, this one new style header, is in the Android SDK. #if defined(ANDROID_NDK) || defined(__QNXNTO__) # include <stddef.h> +# include <stdarg.h> #else # include <cstddef> +# include <cstdarg> #endif #if defined(_MSC_VER) && (_MSC_VER >= 1400 ) && (!defined WINCE)