| Index: include/v8stdint.h
|
| diff --git a/include/v8stdint.h b/include/v8stdint.h
|
| index 7c12e1f49079934488f3261bd9ab939ca3d4d85c..0b49b379182d95c0f68562000f51cb260fc6055f 100644
|
| --- a/include/v8stdint.h
|
| +++ b/include/v8stdint.h
|
| @@ -33,7 +33,9 @@
|
| #include <stddef.h>
|
| #include <stdio.h>
|
|
|
| -#if defined(_WIN32) && !defined(__MINGW32__)
|
| +#include "v8config.h"
|
| +
|
| +#if V8_OS_WIN && !V8_CC_MINGW
|
|
|
| typedef signed char int8_t;
|
| typedef unsigned char uint8_t;
|
| @@ -47,7 +49,7 @@ typedef unsigned __int64 uint64_t;
|
|
|
| #else
|
|
|
| -#include <stdint.h>
|
| +#include <stdint.h> // NOLINT
|
|
|
| #endif
|
|
|
|
|