From bb0224cdf4caafd079c101e72d42009658b7915c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sat, 30 Apr 2016 08:58:39 -0700 Subject: [PATCH] MSVC: Added workaround for missing va_copy macro. --- include/bx/string.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/bx/string.h b/include/bx/string.h index 8932df4..f1eeced 100644 --- a/include/bx/string.h +++ b/include/bx/string.h @@ -14,6 +14,10 @@ #include #include // wchar_t +#ifndef va_copy +# define va_copy(_a, _b) (_a) = (_b) +#endif // va_copy + namespace bx { ///