Define va_copy on windows. Untested, no windows here.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@12814 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
curaga 2013-05-30 15:18:50 +00:00
parent 8c44958e5a
commit be1c3de2fb

View File

@ -30,6 +30,10 @@
# define VALIST char*
#endif
#if defined(_WIN32) && !defined(__CYGWIN__) && !defined(__MINGW32__)
# define va_copy(dest, src) dest = src
#endif
class Log
{
public: