MSVC: Added workaround for missing va_copy macro.

This commit is contained in:
Branimir Karadžić
2016-04-30 08:58:39 -07:00
parent f337d81f0f
commit bb0224cdf4

View File

@@ -14,6 +14,10 @@
#include <string.h>
#include <wchar.h> // wchar_t
#ifndef va_copy
# define va_copy(_a, _b) (_a) = (_b)
#endif // va_copy
namespace bx
{
///