Hi guys.
Thanks a lot for the Windows port of RE2. It's awesome!
The Windows port builds great except that va_copy is only implemented in Visual Studio 2013 onwards, and I have to use 2010. (Yeah, I know.)
In notice this in util.h:
This might be a good place to add the following small change which would allow building on earlier versions.
// va_copy was not implemented before VS 2013
#if !defined(va_copy)
#define va_copy(dest, src) ((dest) = (src))
#endif
Cheers,
Nick.