|
1 diff --git a/mfbt/double-conversion/utils.h b/mfbt/double-conversion/utils.h |
|
2 index cd3e330..bdc7d4b 100644 |
|
3 --- a/mfbt/double-conversion/utils.h |
|
4 +++ b/mfbt/double-conversion/utils.h |
|
5 @@ -74,23 +74,7 @@ |
|
6 #endif |
|
7 |
|
8 |
|
9 -#if defined(_WIN32) && !defined(__MINGW32__) |
|
10 - |
|
11 -typedef signed char int8_t; |
|
12 -typedef unsigned char uint8_t; |
|
13 -typedef short int16_t; // NOLINT |
|
14 -typedef unsigned short uint16_t; // NOLINT |
|
15 -typedef int int32_t; |
|
16 -typedef unsigned int uint32_t; |
|
17 -typedef __int64 int64_t; |
|
18 -typedef unsigned __int64 uint64_t; |
|
19 -// intptr_t and friends are defined in crtdefs.h through stdio.h. |
|
20 - |
|
21 -#else |
|
22 - |
|
23 -#include <stdint.h> |
|
24 - |
|
25 -#endif |
|
26 +#include <stdint.h> |
|
27 |
|
28 // The following macro works on both 32 and 64-bit platforms. |
|
29 // Usage: instead of writing 0x1234567890123456 |