WIN32 -> _WIN32
parent
95e04e3874
commit
3879bebc37
|
@ -43,7 +43,7 @@ ATTRIBUTE_NORETURN
|
|||
ATTRIBUTE_PRINTF(1, 2)
|
||||
void zig_panic(const char *format, ...);
|
||||
|
||||
#ifdef WIN32
|
||||
#ifdef _WIN32
|
||||
#define __func__ __FUNCTION__
|
||||
#endif
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ enum ZigClangAPValue_ValueKind {
|
|||
struct ZigClangAPValue {
|
||||
enum ZigClangAPValue_ValueKind Kind;
|
||||
// experimentally-derived size of clang::APValue::DataType
|
||||
#if defined(WIN32) && defined(_MSC_VER)
|
||||
#if defined(_WIN32) && defined(_MSC_VER)
|
||||
char Data[52];
|
||||
#else
|
||||
char Data[68];
|
||||
|
|
Loading…
Reference in New Issue