Closed mrAtari closed 7 years ago
Tracked down, its the unitialized union in virtual_index function:
#elif defined(_MSC_VER) union { T t; struct { unsigned char *value; unsigned long baseoffs; } u; } conv;
should be conv = {};
Should be fixed now. Also, less warnings on MSVC2015 now.
Tracked down, its the unitialized union in virtual_index function:
should be conv = {};